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>
This commit is contained in:
parent
77ab544308
commit
b605699f1f
@ -38,12 +38,3 @@ config BR2_TARGET_ROOTFS_CPIO_LZMA
|
||||
|
||||
endchoice
|
||||
|
||||
config BR2_TARGET_ROOTFS_CPIO_COPYTO
|
||||
string "also copy the image to..."
|
||||
depends on BR2_TARGET_ROOTFS_CPIO
|
||||
default ""
|
||||
help
|
||||
Copies the resulting image to a secondary location
|
||||
like a tftp server's root directory.
|
||||
|
||||
Example: $(IMAGE)-$(DATE).cpio$(CPIO_ROOTFS_COMPRESSOR_EXT)
|
||||
|
@ -29,8 +29,6 @@ else
|
||||
CPIO_TARGET := $(CPIO_BASE)
|
||||
endif
|
||||
|
||||
ROOTFS_CPIO_COPYTO:=$(call qstrip,$(BR2_TARGET_ROOTFS_CPIO_COPYTO))
|
||||
|
||||
cpioroot-init:
|
||||
rm -f $(TARGET_DIR)/init
|
||||
ln -s sbin/init $(TARGET_DIR)/init
|
||||
@ -52,18 +50,10 @@ endif
|
||||
chmod a+x $(BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE))
|
||||
$(HOST_DIR)/usr/bin/fakeroot -- $(BUILD_DIR)/_fakeroot.$(notdir $(CPIO_BASE))
|
||||
-@rm -f $(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
|
||||
|
||||
#############################################################
|
||||
|
@ -64,11 +64,3 @@ config BR2_TARGET_ROOTFS_EXT2_LZMA
|
||||
|
||||
endchoice
|
||||
|
||||
config BR2_TARGET_ROOTFS_EXT2_COPYTO
|
||||
string "also copy the image to..."
|
||||
depends on BR2_TARGET_ROOTFS_EXT2
|
||||
default ""
|
||||
help
|
||||
Copies the resulting image to a secondary location
|
||||
like a tftp server's root directory.
|
||||
|
||||
|
@ -82,13 +82,7 @@ $(EXT2_BASE).$(EXT2_ROOTFS_COMPRESSOR_EXT): $(EXT2_ROOTFS_COMPRESSOR_PREREQ) $(E
|
||||
$(EXT2_ROOTFS_COMPRESSOR) $(EXT2_BASE) > $(EXT2_TARGET)
|
||||
endif
|
||||
|
||||
EXT2_COPYTO := $(call qstrip,$(BR2_TARGET_ROOTFS_EXT2_COPYTO))
|
||||
|
||||
ext2root: $(EXT2_TARGET)
|
||||
@ls -l $(EXT2_TARGET)
|
||||
ifneq ($(EXT2_COPYTO),)
|
||||
@cp -f $(EXT2_TARGET) $(EXT2_COPYTO)
|
||||
endif
|
||||
|
||||
#############################################################
|
||||
#
|
||||
|
@ -118,10 +118,4 @@ config BR2_TARGET_ROOTFS_JFFS2_OUTPUT
|
||||
string "Output File"
|
||||
default "$(IMAGE).jffs2"
|
||||
|
||||
config BR2_TARGET_ROOTFS_JFFS2_COPYTO
|
||||
string "also copy the image to..."
|
||||
default ""
|
||||
help
|
||||
Copies the resulting image to a secondary location.
|
||||
|
||||
endif
|
||||
|
@ -74,12 +74,7 @@ ifeq ($(BR2_JFFS2_TARGET_SREC),y)
|
||||
@ls -l $(JFFS2_TARGET).srec
|
||||
endif
|
||||
|
||||
JFFS2_COPYTO := $(call qstrip,$(BR2_TARGET_ROOTFS_JFFS2_COPYTO))
|
||||
|
||||
jffs2root: $(JFFS2_TARGET)
|
||||
ifneq ($(JFFS2_COPYTO),)
|
||||
@cp -f $(JFFS2_TARGET) $(JFFS2_COPYTO)
|
||||
endif
|
||||
|
||||
#############################################################
|
||||
#
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
@ -42,9 +41,6 @@ endif
|
||||
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))
|
||||
|
||||
|
@ -91,11 +91,3 @@ config BR2_TARGET_ROOTFS_UBIFS_LZMA
|
||||
|
||||
endchoice
|
||||
|
||||
config BR2_TARGET_ROOTFS_UBIFS_COPYTO
|
||||
string "also copy the image to..."
|
||||
depends on BR2_TARGET_ROOTFS_UBIFS
|
||||
default ""
|
||||
help
|
||||
Copies the resulting image to a secondary location
|
||||
like a tftp server's root directory.
|
||||
|
||||
|
@ -64,13 +64,8 @@ $(UBIFS_BASE).$(UBIFS_ROOTFS_COMPRESSOR_EXT): $(UBIFS_ROOTFS_COMPRESSOR_PREREQ)
|
||||
$(UBIFS_ROOTFS_COMPRESSOR) $(UBIFS_BASE) > $(UBIFS_TARGET)
|
||||
endif
|
||||
|
||||
UBIFS_COPYTO := $(call qstrip,$(BR2_TARGET_ROOTFS_UBIFS_COPYTO))
|
||||
|
||||
ubifsroot: $(UBIFS_TARGET)
|
||||
@ls -l $(UBIFS_TARGET)
|
||||
ifneq ($(UBIFS_COPYTO),)
|
||||
@cp -f $(UBIFS_TARGET) $(UBIFS_COPYTO)
|
||||
endif
|
||||
|
||||
#############################################################
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user