|
@@ -18,6 +18,14 @@ ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)),0)
|
|
EXT2_OPTS += -r $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)
|
|
EXT2_OPTS += -r $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
+# Not qstrip-ing the variable, because it may contain spaces, but we must
|
|
|
|
+# qstrip it when checking. Furthermore, we need to further quote it, so
|
|
|
|
+# that the quotes do not get eaten by the echo statement when creating the
|
|
|
|
+# fakeroot script
|
|
|
|
+ifneq ($(call qstrip,$(BR2_TARGET_ROOTFS_EXT2_LABEL)),)
|
|
|
|
+EXT2_OPTS += -l '$(BR2_TARGET_ROOTFS_EXT2_LABEL)'
|
|
|
|
+endif
|
|
|
|
+
|
|
ROOTFS_EXT2_DEPENDENCIES = host-mke2img
|
|
ROOTFS_EXT2_DEPENDENCIES = host-mke2img
|
|
|
|
|
|
define ROOTFS_EXT2_CMD
|
|
define ROOTFS_EXT2_CMD
|