2009-07-30 17:35:13 +02:00
|
|
|
BR2_PACKAGE_LINUX_FORMAT:=$(call qstrip,$(BR2_PACKAGE_LINUX_FORMAT))
|
|
|
|
BR2_PACKAGE_LINUX_KCONFIG:=$(call qstrip,$(BR2_PACKAGE_LINUX_KCONFIG))
|
2007-04-17 19:30:12 +02:00
|
|
|
|
2009-01-27 00:52:31 +01:00
|
|
|
|
|
|
|
# COPY_FILE absolute_path_to_file, target_directory, filename
|
2009-07-30 17:35:13 +02:00
|
|
|
ifneq ($(call qstrip,$(BUILDROOT_COPYTO)),) # Use shell definition
|
2009-01-27 00:52:31 +01:00
|
|
|
define COPY_FILE
|
|
|
|
@echo "BUILDROOT_COPYTO: Copy to $(BUILDROOT_COPYTO)/$(strip $(3))" ; \
|
|
|
|
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
|
|
|
|
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
|
|
|
|
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi ; \
|
|
|
|
mkdir -p $(BUILDROOT_COPYTO) || echo "Could not create $(BUILDROOT_COPYTO)" ; \
|
|
|
|
if [ -d $(BUILDROOT_COPYTO) -o -w $(BUILDROOT_COPYTO) ] ; then \
|
|
|
|
cp $(1) $(BUILDROOT_COPYTO)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi
|
|
|
|
endef
|
2009-07-30 17:35:13 +02:00
|
|
|
COPYTO=$(call qstrip,$(BUILDROOT_COPYTO))
|
2009-04-09 13:34:11 +02:00
|
|
|
else
|
2009-07-30 17:35:13 +02:00
|
|
|
ifneq ($(call qstrip,$(BR2_COPYTO)),) # Global override
|
2009-01-27 00:52:31 +01:00
|
|
|
define COPY_FILE
|
|
|
|
@echo "BR2_COPYTO: Copy to $(BR2_COPYTO)/$(strip $(3))" ; \
|
|
|
|
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
|
|
|
|
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
|
|
|
|
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi ; \
|
2009-07-30 17:35:13 +02:00
|
|
|
if [ "$(call qstrip,$(BR2_COPYTO))X" != "X" ] ; then \
|
2009-01-27 00:52:31 +01:00
|
|
|
mkdir -p $(BR2_COPYTO) || echo "Could not create $(BR2_COPYTO)" ; \
|
|
|
|
if [ -d $(BR2_COPYTO) -o -w $(BR2_COPYTO) ] ; then \
|
|
|
|
cp $(1) $(BR2_COPYTO)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi ; \
|
|
|
|
fi
|
|
|
|
endef
|
2009-07-30 17:35:13 +02:00
|
|
|
COPYTO=$(call qstrip,$(BR2_COPYTO))
|
2009-01-27 00:52:31 +01:00
|
|
|
else # Package specific copyto, or empty
|
|
|
|
define COPY_FILE
|
|
|
|
@echo "Copy to $(2)/$(strip $(3))" ; \
|
|
|
|
mkdir -p $(BINARIES_DIR) || echo "Could not create $(BINARIES_DIR)" ; \
|
|
|
|
if [ -w $(BINARIES_DIR) -o -w $(BINARIES_DIR) ] ; then \
|
|
|
|
cp $(1) $(BINARIES_DIR)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi ; \
|
2009-07-30 17:35:13 +02:00
|
|
|
if [ "$(call qstrip,$(2))X" != "X" ] ; then \
|
2009-01-27 00:52:31 +01:00
|
|
|
mkdir -p $(2) || echo "Could not create $(2)" ; \
|
|
|
|
if [ -d $(2) -o -w $(2) ] ; then \
|
|
|
|
cp $(1) $(2)/$(strip $(3)) || echo "Could not copy $(3)" ; \
|
|
|
|
fi ; \
|
|
|
|
fi
|
|
|
|
endef
|
|
|
|
endif
|
2009-04-09 13:34:11 +02:00
|
|
|
endif
|
2009-01-27 00:52:31 +01:00
|
|
|
|
2007-01-28 18:35:11 +01:00
|
|
|
# make sure to put everything that is board-specific before the tarroot targets
|
2005-02-17 18:29:57 +01:00
|
|
|
include target/generic/Makefile.in
|
2007-02-12 18:42:18 +01:00
|
|
|
|
|
|
|
# this eventually adds the kernel target to TARGETS:
|
2005-02-17 18:05:47 +01:00
|
|
|
include target/device/Makefile.in
|
2006-01-20 21:04:53 +01:00
|
|
|
include target/x86/Makefile.in
|
|
|
|
include target/powerpc/Makefile.in
|
2009-07-24 02:17:22 +02:00
|
|
|
include target/xtensa/Makefile.in
|
2008-03-11 19:26:07 +01:00
|
|
|
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_TARGET_UBOOT),y)
|
2008-03-11 19:26:07 +01:00
|
|
|
include target/u-boot/Makefile.in
|
|
|
|
endif
|
2008-03-06 20:00:38 +01:00
|
|
|
|
2007-01-28 18:35:11 +01:00
|
|
|
# and finally build the filesystems/tarballs
|
|
|
|
include target/*/*.mk
|
2007-02-12 18:42:18 +01:00
|
|
|
|
2007-01-30 00:01:42 +01:00
|
|
|
# kernel rules
|
2007-02-12 18:42:18 +01:00
|
|
|
# We already did add the kernel target to TARGETS and now just pull in the rules
|
|
|
|
# to actually build this target.
|
2007-07-20 13:27:45 +02:00
|
|
|
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_KERNEL_LINUX),y)
|
2007-08-21 21:33:00 +02:00
|
|
|
include target/linux/Makefile.in
|
2007-10-13 20:30:28 +02:00
|
|
|
endif
|
|
|
|
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_KERNEL_LINUX_ADVANCED),y)
|
2007-10-13 20:30:28 +02:00
|
|
|
include target/linux/Makefile.in.advanced
|
|
|
|
endif
|
|
|
|
|
2008-03-30 00:09:46 +01:00
|
|
|
include target/device/Makefile.in.linux
|