0849e8193e
Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
95 lines
2.7 KiB
Makefile
95 lines
2.7 KiB
Makefile
#############################################################
|
|
#
|
|
# Barebox
|
|
#
|
|
#############################################################
|
|
|
|
BAREBOX_VERSION = $(call qstrip,$(BR2_TARGET_BAREBOX_VERSION))
|
|
|
|
ifeq ($(BAREBOX_VERSION),custom)
|
|
# Handle custom Barebox tarballs as specified by the configuration
|
|
BAREBOX_TARBALL = $(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_TARBALL_LOCATION))
|
|
BAREBOX_SITE = $(dir $(BAREBOX_TARBALL))
|
|
BAREBOX_SOURCE = $(notdir $(BAREBOX_TARBALL))
|
|
else ifeq ($(BR2_TARGET_BAREBOX_CUSTOM_GIT),y)
|
|
BAREBOX_SITE = $(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_GIT_REPO_URL))
|
|
BAREBOX_SITE_METHOD = git
|
|
else
|
|
# Handle stable official Barebox versions
|
|
BAREBOX_SOURCE = barebox-$(BAREBOX_VERSION).tar.bz2
|
|
BAREBOX_SITE = http://www.barebox.org/download/
|
|
endif
|
|
|
|
ifneq ($(call qstrip,$(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR)),)
|
|
define BAREBOX_APPLY_CUSTOM_PATCHES
|
|
support/scripts/apply-patches.sh $(@D) $(BR2_TARGET_BAREBOX_CUSTOM_PATCH_DIR) \
|
|
barebox-$(BAREBOX_VERSION)-\*.patch
|
|
endef
|
|
|
|
BAREBOX_POST_PATCH_HOOKS += BAREBOX_APPLY_CUSTOM_PATCHES
|
|
endif
|
|
|
|
BAREBOX_INSTALL_IMAGES = YES
|
|
ifneq ($(BR2_TARGET_BAREBOX_BAREBOXENV),y)
|
|
BAREBOX_INSTALL_TARGET = NO
|
|
endif
|
|
|
|
BAREBOX_BOARD_DEFCONFIG = $(call qstrip,$(BR2_TARGET_BAREBOX_BOARD_DEFCONFIG))
|
|
|
|
ifeq ($(KERNEL_ARCH),i386)
|
|
BAREBOX_ARCH=x86
|
|
else ifeq ($(KERNEL_ARCH),powerpc)
|
|
BAREBOX_ARCH=ppc
|
|
else
|
|
BAREBOX_ARCH=$(KERNEL_ARCH)
|
|
endif
|
|
|
|
BAREBOX_MAKE_FLAGS = ARCH=$(BAREBOX_ARCH) CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)"
|
|
|
|
define BAREBOX_CONFIGURE_CMDS
|
|
$(MAKE) $(BAREBOX_MAKE_FLAGS) -C $(@D) $(BAREBOX_BOARD_DEFCONFIG)_defconfig
|
|
endef
|
|
|
|
ifeq ($(BR2_TARGET_BAREBOX_BAREBOXENV),y)
|
|
define BAREBOX_BUILD_BAREBOXENV_CMDS
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o $(@D)/bareboxenv \
|
|
$(@D)/scripts/bareboxenv.c
|
|
endef
|
|
endif
|
|
|
|
define BAREBOX_BUILD_CMDS
|
|
$(BAREBOX_BUILD_BAREBOXENV_CMDS)
|
|
$(MAKE) $(BAREBOX_MAKE_FLAGS) -C $(@D)
|
|
endef
|
|
|
|
define BAREBOX_INSTALL_IMAGES_CMDS
|
|
cp $(@D)/barebox.bin $(BINARIES_DIR)
|
|
endef
|
|
|
|
ifeq ($(BR2_TARGET_BAREBOX_BAREBOXENV),y)
|
|
define BAREBOX_INSTALL_TARGET_CMDS
|
|
cp $(@D)/bareboxenv $(TARGET_DIR)/usr/bin
|
|
endef
|
|
endif
|
|
|
|
$(eval $(call GENTARGETS))
|
|
|
|
ifeq ($(BR2_TARGET_BAREBOX),y)
|
|
# we NEED a board defconfig file unless we're at make source
|
|
ifeq ($(filter source,$(MAKECMDGOALS)),)
|
|
ifeq ($(BAREBOX_BOARD_DEFCONFIG),)
|
|
$(error No Barebox defconfig file. Check your BR2_TARGET_BAREBOX_BOARD_DEFCONFIG setting)
|
|
endif
|
|
endif
|
|
|
|
barebox-menuconfig barebox-xconfig barebox-gconfig barebox-nconfig: barebox-configure
|
|
$(MAKE) $(BAREBOX_MAKE_FLAGS) -C $(BAREBOX_DIR) \
|
|
$(subst barebox-,,$@)
|
|
rm -f $(BAREBOX_DIR)/.stamp_{built,target_installed,images_installed}
|
|
|
|
barebox-savedefconfig: barebox-configure
|
|
$(MAKE) $(BAREBOX_MAKE_FLAGS) -C $(BAREBOX_DIR) \
|
|
$(subst barebox-,,$@)
|
|
|
|
endif
|