diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-05 12:55:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-05 12:55:40 +0000 |
commit | 5cfb2f794f603475b82a545356df2ba58a3b1176 (patch) | |
tree | 2cd488dc164d313aef7e039d41b6adecdbab967c /target/cpio/cpioroot.mk | |
parent | 0c16c17f539ccbc91d4dd1ea5168e7beb390fa5d (diff) | |
download | buildroot-novena-5cfb2f794f603475b82a545356df2ba58a3b1176.tar.gz buildroot-novena-5cfb2f794f603475b82a545356df2ba58a3b1176.zip |
- fix some whitespace damage..
- add COPYTO settings for cpio and tar and remove that ugly hardcoded DATE from that was added by Ulf
Diffstat (limited to 'target/cpio/cpioroot.mk')
-rw-r--r-- | target/cpio/cpioroot.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/cpio/cpioroot.mk b/target/cpio/cpioroot.mk index 3a8d03a0f..c18261e27 100644 --- a/target/cpio/cpioroot.mk +++ b/target/cpio/cpioroot.mk @@ -31,6 +31,9 @@ else CPIO_TARGET := $(CPIO_BASE) endif +ROOTFS_CPIO_COPYTO:=$(strip $(subst ",,$(BR2_TARGET_ROOTFS_CPIO_COPYTO))) +# ")) +# cpioroot-init: rm -f $(TARGET_DIR)/init @@ -61,10 +64,18 @@ endif chmod a+x $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) $(STAGING_DIR)/usr/bin/fakeroot -- $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) #-@rm -f $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE)) +ifeq ($(CPIO_ROOTFS_COMPRESSOR),) +ifneq ($(ROOTFS_CPIO_COPYTO),) + $(Q)cp -f $(CPIO_BASE) $(ROOTFS_CPIO_COPYTO) +endif +endif ifneq ($(CPIO_ROOTFS_COMPRESSOR),) $(CPIO_BASE).$(CPIO_ROOTFS_COMPRESSOR_EXT): $(CPIO_ROOTFS_COMPRESSOR_PREREQ) $(CPIO_BASE) $(CPIO_ROOTFS_COMPRESSOR) $(CPIO_BASE) > $(CPIO_TARGET) +ifneq ($(ROOTFS_CPIO_COPYTO),) + $(Q)cp -f $(CPIO_BASE).$(CPIO_ROOTFS_COMPRESSOR_EXT) $(ROOTFS_CPIO_COPYTO).$(CPIO_ROOTFS_COMPRESSOR_EXT) +endif endif cpioroot: $(CPIO_TARGET) |