Skip to content
Snippets Groups Projects
Verified Commit 07df48df authored by Andrei Gherzan's avatar Andrei Gherzan :penguin:
Browse files

x-wic.inc: Use ROOT_PARTITION_SIZE to define A/B partition sizes


It's clearer to have one root partition size variable that is used in
the setup of both A and B partitions.

Signed-off-by: Andrei Gherzan's avatarAndrei Gherzan <andrei.gherzan@huawei.com>
parent 44d499af
No related branches found
No related tags found
No related merge requests found
...@@ -8,9 +8,10 @@ ...@@ -8,9 +8,10 @@
BOOT_PARTITION_SIZE ?= "512M" BOOT_PARTITION_SIZE ?= "512M"
# The SECO B68 board pulls in almost half a Gigabyte worth of linux-firmware. # The SECO B68 board pulls in almost half a Gigabyte worth of linux-firmware.
ROOTA_PARTITION_SIZE_seco-intel-b68 ?= "1536M" ROOT_PARTITION_SIZE_seco-intel-b68 ?= "1536M"
ROOTA_PARTITION_SIZE ?= "1G" ROOT_PARTITION_SIZE ?= "1G"
ROOTB_PARTITION_SIZE ?= "${ROOTA_PARTITION_SIZE}" ROOTA_PARTITION_SIZE = "${ROOT_PARTITION_SIZE}"
ROOTB_PARTITION_SIZE = "${ROOT_PARTITION_SIZE}"
DEVICEDATA_PARTITION_SIZE ?= "8M" DEVICEDATA_PARTITION_SIZE ?= "8M"
SYSDATA_PARTITION_SIZE ?= "512M" SYSDATA_PARTITION_SIZE ?= "512M"
APPDATA_PARTITION_SIZE ?= "1G" APPDATA_PARTITION_SIZE ?= "1G"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment