From 75b6303a9a5bf1b7e62b69bb8ddc7e138ef9775f Mon Sep 17 00:00:00 2001 From: Arnout Vandecappelle Date: Thu, 7 Nov 2013 00:12:29 +0100 Subject: [PATCH] rootfs-ext2: make the symlink as a _POST_TARGET This will allow us to remove the unused ROOTFS_$(FSTYPE)_POST_GEN_HOOKS. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- fs/common.mk | 2 +- fs/ext2/ext2.mk | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/common.mk b/fs/common.mk index 4dab7ea28b..01d2c00bbe 100644 --- a/fs/common.mk +++ b/fs/common.mk @@ -17,7 +17,7 @@ # generating the filesystem image # # ROOTFS_$(FSTYPE)_POST_GEN_HOOKS, a list of hooks to call after -# generating the filesystem image +# generating and compressing the filesystem image # # ROOTFS_$(FSTYPE)_POST_TARGETS, the list of targets that should be # run after running the main filesystem target. This is useful for diff --git a/fs/ext2/ext2.mk b/fs/ext2/ext2.mk index cad5b42d6e..b4280aa5a6 100644 --- a/fs/ext2/ext2.mk +++ b/fs/ext2/ext2.mk @@ -27,11 +27,11 @@ define ROOTFS_EXT2_CMD PATH=$(TARGET_PATH) $(EXT2_ENV) fs/ext2/genext2fs.sh -d $(TARGET_DIR) $(EXT2_OPTS) $@ endef -define ROOTFS_EXT2_HOOK_SYMLINK +rootfs-ext2-symlink: ln -sf rootfs.ext2 $(BINARIES_DIR)/rootfs.ext$(BR2_TARGET_ROOTFS_EXT2_GEN) -endef + ifneq ($(BR2_TARGET_ROOTFS_EXT2_GEN),2) -ROOTFS_EXT2_POST_GEN_HOOKS += ROOTFS_EXT2_HOOK_SYMLINK +ROOTFS_EXT2_POST_TARGETS += rootfs-ext2-symlink endif $(eval $(call ROOTFS_TARGET,ext2))