mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
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>
This commit is contained in:
parent
17e7a58be0
commit
95ee1c7be9
@ -151,7 +151,7 @@ menu "Target Images"
|
|||||||
bool "squashfs"
|
bool "squashfs"
|
||||||
default y if USES_SQUASHFS
|
default y if USES_SQUASHFS
|
||||||
help
|
help
|
||||||
Build a squashfs-lzma root filesystem.
|
Build a squashfs root filesystem.
|
||||||
|
|
||||||
config TARGET_SQUASHFS_BLOCK_SIZE
|
config TARGET_SQUASHFS_BLOCK_SIZE
|
||||||
int "Block size (in KiB)"
|
int "Block size (in KiB)"
|
||||||
@ -159,6 +159,9 @@ menu "Target Images"
|
|||||||
default 64 if LOW_MEMORY_FOOTPRINT
|
default 64 if LOW_MEMORY_FOOTPRINT
|
||||||
default 1024 if (SMALL_FLASH && !LOW_MEMORY_FOOTPRINT)
|
default 1024 if (SMALL_FLASH && !LOW_MEMORY_FOOTPRINT)
|
||||||
default 1024
|
default 1024
|
||||||
|
help
|
||||||
|
Select squashfs block size, must be one of:
|
||||||
|
4, 8, 16, 32, 64, 128, 256, 512, 1024
|
||||||
|
|
||||||
menuconfig TARGET_ROOTFS_UBIFS
|
menuconfig TARGET_ROOTFS_UBIFS
|
||||||
bool "ubifs"
|
bool "ubifs"
|
||||||
|
Loading…
Reference in New Issue
Block a user