From fba63210876e33f81a2854558511edb03619b8fb Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Sun, 29 May 2022 21:19:22 +0200 Subject: [PATCH] fs/squashfs: fix BR2_TARGET_ROOTFS_SQUASHFS_BS_8K Fix typo BR2_TARGET_ROOTFS_SQUASHFS_BS_84K -> BR2_TARGET_ROOTFS_SQUASHFS_BS_8K added by commit 555f8dfd6ef893463ce19d5ee242afd6b83cb450 and raising the following build failure: /nvmedata/autobuild/instance-0/output-1/host/bin/mksquashfs: -b invalid block size Fixes: - http://autobuild.buildroot.org/results/927f070dfc1a800e57ca6619f062940641837db9 Signed-off-by: Fabrice Fontaine Signed-off-by: Yann E. MORIN --- fs/squashfs/Config.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/squashfs/Config.in b/fs/squashfs/Config.in index 0e8de2fd3a..21322a2246 100644 --- a/fs/squashfs/Config.in +++ b/fs/squashfs/Config.in @@ -46,7 +46,7 @@ endchoice config BR2_TARGET_ROOTFS_SQUASHFS_BS string default "4K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_4K - default "8K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_84K + default "8K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_8K default "16K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_16K default "32K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_32K default "64K" if BR2_TARGET_ROOTFS_SQUASHFS_BS_64K