2016-03-25 12:07:03 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 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
|
|
|
|
|
2019-05-13 12:24:04 +00:00
|
|
|
PKG_VERSION:=2019.04
|
2016-03-25 12:07:03 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2019-05-13 12:24:04 +00:00
|
|
|
PKG_HASH:=76b7772d156b3ddd7644c8a1736081e55b78828537ff714065d21dbade229bef
|
2016-03-25 12:07:03 +00:00
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
2016-03-25 12:07:03 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-05-23 07:02:59 +00:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2016-03-25 12:07:03 +00:00
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
define U-Boot/Default
|
|
|
|
BUILD_TARGET:=mvebu
|
2016-09-23 11:53:27 +00:00
|
|
|
HIDDEN:=1
|
2016-03-25 12:07:03 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
define U-Boot/clearfog
|
|
|
|
NAME:=SolidRun ClearFog A1
|
2019-05-11 17:37:33 +00:00
|
|
|
BUILD_DEVICES:=solidrun_clearfog-base-a1 solidrun_clearfog-pro-a1
|
2018-03-07 21:10:01 +00:00
|
|
|
BUILD_SUBTARGET:=cortexa9
|
2017-01-23 11:09:10 +00:00
|
|
|
UBOOT_IMAGE:=u-boot-spl.kwb
|
2016-03-25 12:07:03 +00:00
|
|
|
endef
|
|
|
|
|
2019-09-09 16:50:26 +00:00
|
|
|
define U-Boot/uDPU
|
|
|
|
NAME:=Methode uDPU
|
|
|
|
BUILD_DEVICES:=methode_udpu
|
|
|
|
BUILD_SUBTARGET:=cortexa53
|
|
|
|
endef
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
UBOOT_TARGETS:= \
|
2019-09-09 16:50:26 +00:00
|
|
|
clearfog \
|
|
|
|
uDPU
|
2016-03-25 12:07:03 +00:00
|
|
|
|
2018-05-23 07:02:59 +00:00
|
|
|
Build/Exports:=$(Host/Exports)
|
|
|
|
|
2018-03-20 23:10:17 +00:00
|
|
|
define Build/Configure
|
2020-02-10 15:33:27 +00:00
|
|
|
# enable additional options beyond <device>_defconfig
|
|
|
|
echo CONFIG_NET_RANDOM_ETHADDR=y >> $(PKG_BUILD_DIR)/configs/$(UBOOT_CONFIG)_defconfig
|
|
|
|
echo CONFIG_CMD_SETEXPR=y >> $(PKG_BUILD_DIR)/configs/$(UBOOT_CONFIG)_defconfig
|
2018-03-20 23:10:17 +00:00
|
|
|
|
2020-02-10 15:33:27 +00:00
|
|
|
$(call Build/Configure/U-Boot)
|
2018-03-20 23:10:17 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
define Build/InstallDev
|
2017-01-27 12:14:12 +00:00
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
2019-09-09 16:50:26 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(UBOOT_IMAGE)
|
2016-03-25 12:07:03 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
$(eval $(call BuildPackage/U-Boot))
|