target/romfs: cleanup

Remove the code needed to build host genromfs, since it can now be
done using package/genromfs.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2010-03-02 22:43:21 +01:00
parent 16b1d2a734
commit 3cabc6cce1
2 changed files with 2 additions and 41 deletions

View File

@ -1,6 +1,5 @@
config BR2_TARGET_ROOTFS_ROMFS config BR2_TARGET_ROOTFS_ROMFS
bool "romfs root filesystem" bool "romfs root filesystem"
select BR2_HOST_FAKEROOT
help help
Build a romfs image of the root filesystem. Build a romfs image of the root filesystem.

View File

@ -1,33 +1,3 @@
#############################################################
#
# genromfs to build to target romfs filesystems
#
#############################################################
ROMFS_VERSION=0.5.2
ROMFS_DIR=$(BUILD_DIR)/genromfs-$(ROMFS_VERSION)
ROMFS_SOURCE=genromfs-$(ROMFS_VERSION).tar.gz
ROMFS_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/romfs
$(DL_DIR)/$(ROMFS_SOURCE):
$(call DOWNLOAD,$(ROMFS_SITE),$(ROMFS_SOURCE))
$(ROMFS_DIR): $(DL_DIR)/$(ROMFS_SOURCE)
$(ZCAT) $(DL_DIR)/$(ROMFS_SOURCE) | tar -C $(BUILD_DIR) -xvf -
$(ROMFS_DIR)/genromfs: $(ROMFS_DIR)
$(MAKE) -C $(ROMFS_DIR)
touch -c $@
romfs: $(ROMFS_DIR)/genromfs
romfs-source: $(DL_DIR)/$(ROMFS_SOURCE)
romfs-clean:
-$(MAKE) -C $(ROMFS_DIR) clean
romfs-dirclean:
rm -rf $(ROMFS_DIR)
############################################################# #############################################################
# #
# Build the romfs root filesystem image # Build the romfs root filesystem image
@ -36,7 +6,7 @@ romfs-dirclean:
ROMFS_TARGET=$(IMAGE).romfs ROMFS_TARGET=$(IMAGE).romfs
romfsroot: host-fakeroot makedevs romfs romfsroot: host-fakeroot host-genromfs makedevs
# Use fakeroot to pretend all target binaries are owned by root # Use fakeroot to pretend all target binaries are owned by root
rm -f $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) rm -f $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
touch $(BUILD_DIR)/.fakeroot.00000 touch $(BUILD_DIR)/.fakeroot.00000
@ -48,19 +18,11 @@ ifneq ($(TARGET_DEVICE_TABLE),)
>> $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) >> $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
endif endif
# Use fakeroot so genromfs believes the previous fakery # Use fakeroot so genromfs believes the previous fakery
echo "$(ROMFS_DIR)/genromfs -d $(TARGET_DIR) -f $(ROMFS_TARGET)" >> $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) echo "$(HOST_DIR)/usr/bin/genromfs -d $(TARGET_DIR) -f $(ROMFS_TARGET)" >> $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
chmod a+x $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) chmod a+x $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
$(HOST_DIR)/usr/bin/fakeroot -- $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) $(HOST_DIR)/usr/bin/fakeroot -- $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
-@rm -f $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET)) -@rm -f $(BUILD_DIR)/_fakeroot.$(notdir $(ROMFS_TARGET))
romfsroot-source: romfs-source
romfsroot-clean:
-$(MAKE) -C $(ROMFS_DIR) clean
romfsroot-dirclean:
rm -rf $(ROMFS_DIR)
############################################################# #############################################################
# #
# Toplevel Makefile options # Toplevel Makefile options