From 53cdf9bf330bbffb0d41ec0fe9635c1a25ccf008 Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Sun, 28 Mar 2021 18:51:58 +0200 Subject: uboot-imx6: rename to 'uboot-imx' Signed-off-by: Piotr Dymacz --- package/boot/uboot-imx/Makefile | 56 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 package/boot/uboot-imx/Makefile (limited to 'package/boot/uboot-imx/Makefile') diff --git a/package/boot/uboot-imx/Makefile b/package/boot/uboot-imx/Makefile new file mode 100644 index 0000000000..9ca4d55a1c --- /dev/null +++ b/package/boot/uboot-imx/Makefile @@ -0,0 +1,56 @@ +# +# 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 + +PKG_VERSION:=2020.04 +PKG_RELEASE:=$(AUTORELEASE) + +PKG_HASH:=fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372 + +include $(INCLUDE_DIR)/u-boot.mk +include $(INCLUDE_DIR)/package.mk + +define U-Boot/Default + BUILD_TARGET:=imx + UBOOT_IMAGE:=u-boot.imx +endef + +define U-Boot/apalis_imx6 + NAME:=Toradex Apalis + UBOOT_IMAGE:=SPL u-boot.img u-boot-with-spl.imx + UBOOT_MAKE_FLAGS:=SPL u-boot.img u-boot-with-spl.imx + BUILD_DEVICES:=toradex_apalis +endef + +define U-Boot/mx6cuboxi + NAME:=SolidRun Cubox-i boards + UBOOT_IMAGE:=SPL u-boot.img + UBOOT_MAKE_FLAGS:=SPL u-boot.img + BUILD_DEVICES:=solidrun_cubox-i +endef + +define U-Boot/wandboard + NAME:=Wandboard Dual Lite/Quad/Solo + BUILD_DEVICES:=wandboard_dual +endef + +UBOOT_TARGETS := \ + apalis_imx6 \ + mx6cuboxi \ + wandboard + +UBOOT_MAKE_FLAGS += u-boot.imx + +define Build/InstallDev + $(INSTALL_DIR) $(STAGING_DIR_IMAGE) + $(foreach img,$(UBOOT_IMAGE), \ + $(CP) $(PKG_BUILD_DIR)/$(img) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(img); \ + ) +endef + +$(eval $(call BuildPackage/U-Boot)) -- cgit v1.2.3