2016-10-28 16:14:32 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
2017-01-23 09:50:22 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
2016-10-28 16:14:32 +00:00
|
|
|
|
2016-12-01 15:01:27 +00:00
|
|
|
PKG_NAME:=uboot-layerscape
|
2017-07-03 02:48:27 +00:00
|
|
|
PKG_VERSION:=2017.09
|
2016-12-01 15:01:27 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2017-07-03 02:48:27 +00:00
|
|
|
PKG_SOURCE_URL:=https://github.com/qoriq-open-source/u-boot.git
|
|
|
|
PKG_SOURCE_VERSION:=503eff00a7119d2690a662ed64e83e4782b7d3d9
|
|
|
|
PKG_MIRROR_HASH:=67dbf765b91a5f181e693bd87b6e9521ffeec163c7c037f71b19b3d8715dc32a
|
2016-10-28 16:14:32 +00:00
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
2016-10-28 16:14:32 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define U-Boot/Default
|
|
|
|
BUILD_TARGET:=layerscape
|
2017-06-29 03:19:07 +00:00
|
|
|
BUILD_SUBTARGET:=armv8_64b
|
2017-01-23 09:50:22 +00:00
|
|
|
BUILD_DEVICES:=$(1)
|
|
|
|
UBOOT_IMAGE:=u-boot-dtb.bin
|
|
|
|
HIDDEN:=y
|
2016-10-28 16:14:32 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define U-Boot/ls1043ardb
|
|
|
|
NAME:=NXP ls1043ardb 64b Dev Board
|
2016-10-28 16:14:32 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define U-Boot/ls1046ardb
|
|
|
|
NAME:=NXP ls1046ardb 64b Dev Board
|
|
|
|
UBOOT_CONFIG:=ls1046ardb_qspi
|
2016-12-07 16:07:42 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define U-Boot/ls1012ardb
|
|
|
|
NAME:=NXP ls1012ardb 64b Dev Board
|
|
|
|
UBOOT_CONFIG:=ls1012ardb_qspi
|
2016-10-28 16:18:23 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
UBOOT_TARGETS := \
|
2016-10-28 16:18:23 +00:00
|
|
|
ls1043ardb \
|
2016-12-07 16:07:42 +00:00
|
|
|
ls1046ardb \
|
2016-10-28 16:18:23 +00:00
|
|
|
ls1012ardb
|
2016-10-28 16:14:32 +00:00
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define Build/InstallDev
|
2017-01-27 15:06:31 +00:00
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
2017-06-29 03:19:07 +00:00
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(BUILD_SUBTARGET)-uboot.bin
|
2016-10-28 16:14:32 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
define Package/u-boot/install/default
|
2016-10-28 16:14:32 +00:00
|
|
|
endef
|
|
|
|
|
2017-01-23 09:50:22 +00:00
|
|
|
$(eval $(call BuildPackage/U-Boot))
|