mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
1c35dc26f1
Fix image build fail by using the generic subtarget. Fixes:64ef920b
("mxs: add generic subtarget") Ref:40e3f660
("uboot-fritz4040: build with ipq40xx generic subtarget") Signed-off-by: Kuan-Yi Li <kyli@abysm.org> [ add commit description ] Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
48 lines
978 B
Makefile
48 lines
978 B
Makefile
#
|
|
# Copyright (C) 2013-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
|
|
|
|
PKG_VERSION:=2020.04
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_HASH:=fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=mxs
|
|
BUILD_SUBTARGET:=generic
|
|
UBOOT_IMAGE:=u-boot.sb
|
|
DEFAULT:=y
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
define U-Boot/mx23_olinuxino
|
|
NAME:=Olinuxino i.MX233
|
|
endef
|
|
|
|
define U-Boot/duckbill
|
|
NAME:=I2SE Duckbill
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
mx23_olinuxino \
|
|
duckbill
|
|
|
|
UBOOT_MAKE_FLAGS += $(UBOOT_IMAGE)
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(UBOOT_IMAGE)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|