diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-03-02 23:10:49 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-09 11:04:33 +0200 |
commit | b605699f1f365c55d094c47737d3f5f7e38c1f61 (patch) | |
tree | 74dbf82010675f390f113a772565151286f358db /target/tar | |
parent | 77ab5443080dd994dd9dbe9c9eec302f83525dde (diff) | |
download | buildroot-novena-b605699f1f365c55d094c47737d3f5f7e38c1f61.tar.gz buildroot-novena-b605699f1f365c55d094c47737d3f5f7e38c1f61.zip |
target/: remove the COPYTO mess
There's no need to provide options to copy the filesystem image after
the build. Just use 'cp' outside of Buildroot.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'target/tar')
-rw-r--r-- | target/tar/Config.in | 11 | ||||
-rw-r--r-- | target/tar/tarroot.mk | 4 |
2 files changed, 0 insertions, 15 deletions
diff --git a/target/tar/Config.in b/target/tar/Config.in index ae024094a..0adca795f 100644 --- a/target/tar/Config.in +++ b/target/tar/Config.in @@ -45,14 +45,3 @@ config BR2_TARGET_ROOTFS_TAR_OPTIONS help Any other flags you want to pass to tar Refer to tar --help for details - -config BR2_TARGET_ROOTFS_TAR_COPYTO - string "also copy the image to..." - depends on BR2_TARGET_ROOTFS_TAR - default "" - help - Copies the resulting image to a secondary location - like a tftp server's root directory. - - Example: $(IMAGE)-$(DATE).tar - diff --git a/target/tar/tarroot.mk b/target/tar/tarroot.mk index d082672ce..cd01bc74f 100644 --- a/target/tar/tarroot.mk +++ b/target/tar/tarroot.mk @@ -21,7 +21,6 @@ ifeq ($(BR2_TARGET_ROOTFS_TAR_LZMA),y) TAR_COMPRESSOR:=lzma -9 -c TAR_COMPRESSOR_EXT:=lzma endif -ROOTFS_TAR_COPYTO:=$(call qstrip,$(BR2_TARGET_ROOTFS_TAR_COPYTO)) tarroot: host-fakeroot makedevs # Use fakeroot to pretend all target binaries are owned by root @@ -43,9 +42,6 @@ ifneq ($(TAR_COMPRESSOR),) -rm -f $(TAR_TARGET).$() PATH="$(STAGING_DIR)/sbin:$(STAGING_DIR)/bin:$(STAGING_DIR)/usr/sbin:$(STAGING_DIR)/usr/bin:$(PATH)" $(TAR_COMPRESSOR) $(TAR_TARGET) > $(TAR_TARGET).$(TAR_COMPRESSOR_EXT) endif -ifneq ($(ROOTFS_TAR_COPYTO),) - $(Q)cp -f $(TAR_TARGET) $(ROOTFS_TAR_COPYTO) -endif -@rm -f $(BUILD_DIR)/_fakeroot.$(notdir $(TAR_TARGET)) ############################################################# |