c6502ce3bb
Do not put the u-boot and ucode images into the kernel build directory as this directory might get removed after kernel updates while the u-boot packages InstallDev recipe is not getting re-executed because it is still considered current, leading to image build failures later on due to missing images. To ensure that built bootloader images persist over kernel version updates in the buildroot, put them into the new STAGING_DIR_IMAGE directory. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
#
|
|
# 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
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=uboot-layerscape
|
|
PKG_VERSION:=v1.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_MIRROR_HASH:=6aba7cb32d655dacb49bd188706bf1284159ae9b1fa69056df634b90070c3768
|
|
PKG_SOURCE_URL:=https://github.com/fsl-jyt/u-boot.git
|
|
PKG_SOURCE_VERSION:=aefcbf4c2bb36e1f0ead61181e5fe1119b5683ad
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=layerscape
|
|
BUILD_SUBTARGET:=64b
|
|
BUILD_DEVICES:=$(1)
|
|
UBOOT_IMAGE:=u-boot-dtb.bin
|
|
HIDDEN:=y
|
|
endef
|
|
|
|
define U-Boot/ls1043ardb
|
|
NAME:=NXP ls1043ardb 64b Dev Board
|
|
endef
|
|
|
|
define U-Boot/ls1046ardb
|
|
NAME:=NXP ls1046ardb 64b Dev Board
|
|
UBOOT_CONFIG:=ls1046ardb_qspi
|
|
endef
|
|
|
|
define U-Boot/ls1012ardb
|
|
NAME:=NXP ls1012ardb 64b Dev Board
|
|
UBOOT_CONFIG:=ls1012ardb_qspi
|
|
UBOOT_IMAGE:=u-boot-swap.bin
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
ls1043ardb \
|
|
ls1046ardb \
|
|
ls1012ardb
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-64b-uboot.bin
|
|
endef
|
|
|
|
define Package/u-boot/install/default
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|