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
|
|
|
|
|
2018-03-21 00:13:02 +00:00
|
|
|
PKG_VERSION:=2018.03
|
2016-03-25 12:07:03 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2018-03-21 00:13:02 +00:00
|
|
|
PKG_HASH:=7e7477534409d5368eb1371ffde6820f0f79780a1a1f676161c48442cb303dfd
|
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
|
2017-04-06 18:13:31 +00:00
|
|
|
BUILD_DEVICES:=armada-388-clearfog-base armada-388-clearfog-pro
|
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
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
UBOOT_TARGETS:= \
|
|
|
|
clearfog
|
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
|
|
|
|
# enable additional options beyond clearfog_defconfig
|
|
|
|
echo CONFIG_NET_RANDOM_ETHADDR=y >> $(PKG_BUILD_DIR)/configs/$(BUILD_VARIANT)_defconfig
|
|
|
|
echo CONFIG_CMD_SETEXPR=y >> $(PKG_BUILD_DIR)/configs/$(BUILD_VARIANT)_defconfig
|
|
|
|
|
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) $(UBOOT_CONFIGURE_VARS) $(UBOOT_CONFIG)_config
|
|
|
|
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)
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-u-boot-spl.kwb
|
2016-03-25 12:07:03 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 11:09:10 +00:00
|
|
|
$(eval $(call BuildPackage/U-Boot))
|