From 8842ed3d2730ac51597432e4b11ae9112705335f Mon Sep 17 00:00:00 2001 From: Paul Fertser Date: Wed, 16 Jun 2021 17:15:59 +0300 Subject: [PATCH] build: Config-images: fix unit of partition sizes The code interprets these config values as Mebibytes rather than Megabytes so modify the description accordingly. Signed-off-by: Paul Fertser [fix commit title prefix] Signed-off-by: Adrian Schmutzler --- config/Config-images.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Config-images.in b/config/Config-images.in index 2aec45bc48..167fcc5665 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -280,14 +280,14 @@ menu "Target Images" source "target/linux/*/image/Config.in" config TARGET_KERNEL_PARTSIZE - int "Kernel partition size (in MB)" + int "Kernel partition size (in MiB)" depends on USES_BOOT_PART default 8 if TARGET_apm821xx_sata default 64 if TARGET_bcm27xx default 16 config TARGET_ROOTFS_PARTSIZE - int "Root filesystem partition size (in MB)" + int "Root filesystem partition size (in MiB)" depends on USES_ROOTFS_PART || TARGET_ROOTFS_EXT4FS || TARGET_mvebu || TARGET_rb532 || TARGET_sunxi || TARGET_uml default 160 help