From: Bernhard Reutner-Fischer Date: Fri, 22 Dec 2006 12:34:35 +0000 (-0000) Subject: - BR2_TARGET_ROOTFS_EXT2_RESBLKS is ignored if it is 0. It should be used if it is... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=edea8785d84d95e07c50490180d3cf08723d70f4;p=buildroot.git - BR2_TARGET_ROOTFS_EXT2_RESBLKS is ignored if it is 0. It should be used if it is 0 (since 0 means something here--"do not reserve any blocks". Thanks to timw. Closes #484. --- diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 95a9b61cb6..5f9a59bb21 100644 --- a/target/ext2/ext2root.mk +++ b/target/ext2/ext2root.mk @@ -54,7 +54,7 @@ ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_INODES)),0) EXT2_OPTS += -i $(strip $(BR2_TARGET_ROOTFS_EXT2_INODES)) endif -ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)),0) +ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)),) EXT2_OPTS += -r $(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)) endif