From edea8785d84d95e07c50490180d3cf08723d70f4 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 22 Dec 2006 12:34:35 +0000 Subject: - 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. --- target/ext2/ext2root.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 95a9b61cb..5f9a59bb2 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 -- cgit v1.2.3