13e8d54917
When we provide the HOSTCFLAGS to the U-Boot build it will fail because
it can not find the u-boot provided header files any more.
Just overwrite and not append the package specific configuration on top
of the configuration provided by u-boot.mk.
uboot-fritz4040 is based on U-Boot 2012.07 and this problem is probably
similar to the problem seen with the lantiq and ar71xx u-boot build.
Fixes: df9781a420
("u-boot,at91bootstrap: fix incorrect HOSTCPPFLAGS variable")
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2013-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_SOURCE_URL:=https://github.com/chunkeey/FritzBox-4040-UBOOT
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_VERSION:=6946ebbaf7b12a4a092d763c8f0c87a25984f103
|
|
PKG_SOURCE_DATE:=2017-01-29
|
|
PKG_MIRROR_HASH:=5c2394f51a083dca2a2bf9cb36fa717f252112fc792c9eeae64f6383ad08987b
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=ipq806x
|
|
UBOOT_IMAGE:=uboot-fritz4040.bin
|
|
endef
|
|
|
|
define U-Boot/fritz4040
|
|
NAME:=FritzBox 4040
|
|
endef
|
|
|
|
UBOOT_CONFIGURE_VARS += USE_PRIVATE_LIBGCC=yes
|
|
UBOOT_MAKE_FLAGS = USE_PRIVATE_LIBGCC=yes
|
|
export DTC
|
|
|
|
define Build/Configure
|
|
$(Build/Configure/U-Boot)
|
|
$(HOSTCC) -o $(PKG_BUILD_DIR)/fritz/lzma2eva $(PKG_BUILD_DIR)/fritz/src/lzma2eva.c -lz
|
|
$(HOSTCC) -o $(PKG_BUILD_DIR)/fritz/tichksum $(PKG_BUILD_DIR)/fritz/src/tichksum.c
|
|
ln -sf $(STAGING_DIR_HOST)/bin/lzma $(PKG_BUILD_DIR)/fritz
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(Build/Compile/U-Boot)
|
|
(cd $(PKG_BUILD_DIR); ./fritz/fritzcreator.sh;)
|
|
endef
|
|
|
|
define Package/u-boot/install
|
|
$(Package/u-boot/install/default)
|
|
$(INSTALL_BIN) ./files/upload-to-f4040.sh $(1)/
|
|
endef
|
|
|
|
UBOOT_TARGETS := fritz4040
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|