From: Yann E. MORIN Date: Mon, 3 Jul 2017 22:50:57 +0000 (+0200) Subject: fs/ext2: always pass the number of inodes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef975b50636726e9bde28b0baa7a8715cbe971c0;p=buildroot.git fs/ext2: always pass the number of inodes ... since zero also means auto for the mke2img script, now. Signed-off-by: "Yann E. MORIN" Signed-off-by: Samuel Martin Signed-off-by: Thomas Petazzoni --- diff --git a/fs/ext2/ext2.mk b/fs/ext2/ext2.mk index 9d3e8fd666..3fc12d7499 100644 --- a/fs/ext2/ext2.mk +++ b/fs/ext2/ext2.mk @@ -8,9 +8,8 @@ EXT2_OPTS = -G $(BR2_TARGET_ROOTFS_EXT2_GEN) -R $(BR2_TARGET_ROOTFS_EXT2_REV) EXT2_OPTS += -b $(BR2_TARGET_ROOTFS_EXT2_BLOCKS) -ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_INODES)),0) EXT2_OPTS += -i $(BR2_TARGET_ROOTFS_EXT2_INODES) -endif + EXT2_OPTS += -I $(BR2_TARGET_ROOTFS_EXT2_EXTRA_INODES) ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)),0)