Skip to content

Commit

Permalink
fs/squashfs: fix BR2_TARGET_ROOTFS_SQUASHFS_BS_8K
Browse files Browse the repository at this point in the history
Fix typo BR2_TARGET_ROOTFS_SQUASHFS_BS_84K
-> BR2_TARGET_ROOTFS_SQUASHFS_BS_8K added by commit
555f8df 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 <[email protected]>
Signed-off-by: Yann E. MORIN <[email protected]>
  • Loading branch information
ffontaine authored and yann-morin-1998 committed May 29, 2022
1 parent 9c5c3fb commit fba6321
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/squashfs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fba6321

Please sign in to comment.