summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-22 12:34:35 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-12-22 12:34:35 +0000
commitedea8785d84d95e07c50490180d3cf08723d70f4 (patch)
tree5f424269f5e39600a54dfbd0e4ca58a5acd44fac /target
parent684e3477bb15c39f8d54e9c8d768c6d84dbe5ba5 (diff)
- 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.
Diffstat (limited to 'target')
-rw-r--r--target/ext2/ext2root.mk2
1 files changed, 1 insertions, 1 deletions
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