- BR2_TARGET_ROOTFS_EXT2_RESBLKS is ignored if it is 0. It should be used if it is...
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 22 Dec 2006 12:34:35 +0000 (12:34 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 22 Dec 2006 12:34:35 +0000 (12:34 -0000)
  Thanks to timw. Closes #484.

target/ext2/ext2root.mk

index 95a9b61cb67993dfc828c0aabcfcc1428ae996bb..5f9a59bb211c949ba0f03a00360551ed947de34f 100644 (file)
@@ -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