diff options
author | Tony Butler <spudz76@gmail.com> | 2022-11-28 04:00:02 -0800 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-12-06 23:12:14 +0100 |
commit | 6cee46def01a0d51d1fb003d92e0840f87aa8822 (patch) | |
tree | ec6b1dc1678ecce0c31fb2aa98a4abdfdc49466d /config | |
parent | 3c1512a25d927dbddea96802f55980e6c963302e (diff) | |
download | upstream-6cee46def01a0d51d1fb003d92e0840f87aa8822.tar.gz upstream-6cee46def01a0d51d1fb003d92e0840f87aa8822.tar.bz2 upstream-6cee46def01a0d51d1fb003d92e0840f87aa8822.zip |
build: images: squashfs: add help, fix description
add help text for `TARGET_SQUASHFS_BLOCK_SIZE` to match the only valid
settings accepted by `mksquashfs4` ("block size not power of two or not
between 4096 and 1Mbyte") thus for this setting in "KB", the set:
`4, 8, 16, 32, 64, 128, 256, 512, 1024`
replace `squashfs-lzma` with `squashfs` in the description for
`TARGET_ROOTFS_SQUASHFS` because it has various compressions, and not
just lzma as it did in the past
cosmetic change with no functional effect
Signed-off-by: Tony Butler <spudz76@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-images.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/Config-images.in b/config/Config-images.in index aa23876259..0252ef6425 100644 --- a/config/Config-images.in +++ b/config/Config-images.in @@ -150,7 +150,7 @@ menu "Target Images" bool "squashfs" default y if USES_SQUASHFS help - Build a squashfs-lzma root filesystem. + Build a squashfs root filesystem. config TARGET_SQUASHFS_BLOCK_SIZE int "Block size (in KiB)" @@ -158,6 +158,9 @@ menu "Target Images" default 64 if LOW_MEMORY_FOOTPRINT default 1024 if (SMALL_FLASH && !LOW_MEMORY_FOOTPRINT) default 256 + help + Select squashfs block size, must be one of: + 4, 8, 16, 32, 64, 128, 256, 512, 1024 menuconfig TARGET_ROOTFS_UBIFS bool "ubifs" |