Skip to content

Commit

Permalink
ODROID-COMMON: ptable: Change partitions sizes.
Browse files Browse the repository at this point in the history
- boot : 24M -> 16M
- recovery : 16 -> 24M

Change-Id: I580a140e4f869f41ccd8bd3d2fc461591d7ba091
  • Loading branch information
xiane committed Jan 15, 2019
1 parent 44f5a07 commit d2f0be3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions board/hardkernel/odroid-common/partition.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ static struct partitions factory_partitions[] = {
.size = bytes_to_lba(CONFIG_DTB_SIZE),
}, {
.name = "boot", /* Boot image */
.size = bytes_to_lba(24 * SZ_1M),
.size = bytes_to_lba(16 * SZ_1M),
}, {
.name = "recovery", /* Recovery Image */
.size = bytes_to_lba(16 * SZ_1M),
.size = bytes_to_lba(24 * SZ_1M),
}, {
.name = "cache", /* Android: cache */
.size = bytes_to_lba(1 * SZ_1G),
Expand Down

0 comments on commit d2f0be3

Please sign in to comment.