cb5cc2a700
Major changes since v1.3: - A64/A80 support - H3 fel speedup - Fel readl/writel/sid/reset64 commands - Fel progress bar support - Nand-image-builder tool - Linaro toolchain compatibility workaround - Portability fixes The build system has been reworked somewhat and extra compiler flags now have to be passed in EXTRA_CFLAGS instead of CFLAGS, so we cannot use {TARGET,HOST}_CONFIGURE_OPTS. Instead explicitly pass the needed variables (CC and LDFLAGS). Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# sunxi-tools
|
|
#
|
|
################################################################################
|
|
|
|
SUNXI_TOOLS_VERSION = 89dac0f7eaaedd0d8afa9d5a3c713c7c1ccb9cf6
|
|
SUNXI_TOOLS_SITE = $(call github,linux-sunxi,sunxi-tools,$(SUNXI_TOOLS_VERSION))
|
|
SUNXI_TOOLS_LICENSE = GPLv2+
|
|
SUNXI_TOOLS_LICENSE_FILES = COPYING
|
|
HOST_SUNXI_TOOLS_DEPENDENCIES = host-libusb host-pkgconf
|
|
FEX2BIN = $(HOST_DIR)/usr/bin/fex2bin
|
|
|
|
define HOST_SUNXI_TOOLS_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) CC="$(HOSTCC)" PREFIX=$(HOST_DIR)/usr \
|
|
EXTRA_CFLAGS="$(HOST_CFLAGS)" LDFLAGS="$(HOST_LDFLAGS)" \
|
|
-C $(@D) tools
|
|
endef
|
|
|
|
define HOST_SUNXI_TOOLS_INSTALL_CMDS
|
|
$(HOST_MAKE_ENV) $(MAKE) PREFIX=$(HOST_DIR)/usr \
|
|
-C $(@D) install-tools
|
|
endef
|
|
|
|
define SUNXI_TOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" PREFIX=/usr \
|
|
EXTRA_CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
-C $(@D) sunxi-nand-part
|
|
endef
|
|
|
|
define SUNXI_TOOLS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/sunxi-nand-part $(TARGET_DIR)/usr/bin/sunxi-nand-part
|
|
endef
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(host-generic-package))
|