4346902ca9
This commit converts the at91dataflashboot bootloader build process to GENTARGETS. It also does the following changes : * As the package directory name is at91dataflashboot, the configuration options and make variables are renamed to AT91DATAFLASHBOOT instead of DATAFLASHBOOT. * Since the board selection in Kconfig wasn't used anywhere, get rid of it. at91dataflashboot is only for AT91RM9200 apparently anyway. [Peter: add ':=' -> '=' change] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
888 B
Makefile
32 lines
888 B
Makefile
#############################################################
|
|
#
|
|
# DataFlashBoot
|
|
#
|
|
#############################################################
|
|
|
|
AT91DATAFLASHBOOT_VERSION = 1.05
|
|
AT91DATAFLASHBOOT_SOURCE = DataflashBoot-$(AT91DATAFLASHBOOT_VERSION).tar.bz2
|
|
AT91DATAFLASHBOOT_SITE = ftp://www.at91.com/pub/buildroot/
|
|
|
|
AT91DATAFLASHBOOT_INSTALL_TARGET = NO
|
|
AT91DATAFLASHBOOT_INSTALL_IMAGES = YES
|
|
|
|
define AT91DATAFLASHBOOT_BUILD_CMDS
|
|
make -C $(@D) CROSS_COMPILE=$(TARGET_CROSS)
|
|
endef
|
|
|
|
define AT91DATAFLASHBOOT_INSTALL_IMAGES_CMDS
|
|
cp $(@D)/DataflashBoot-$(AT91DATAFLASHBOOT_VERSION).bin $(BINARIES_DIR)
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS,boot,at91dataflashboot))
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(BR2_TARGET_AT91DATAFLASHBOOT),y)
|
|
TARGETS+=at91dataflashboot
|
|
endif
|