a0ae7a50e0
Migrate to "new" image generation method. Device profiles will be generated based on image/Makefile instead of profiles/ , which will also allow to automatically build images for all supported devices via buildbot. Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
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:=6
|
|
|
|
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
|
|
BUILD_DEVICES:=olinuxino_maxi olinuxino_micro
|
|
endef
|
|
|
|
define U-Boot/duckbill
|
|
NAME:=I2SE Duckbill
|
|
BUILD_DEVICES:=i2se_duckbill
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
mx23_olinuxino \
|
|
duckbill
|
|
|
|
UBOOT_MAKE_FLAGS += $(UBOOT_IMAGE)
|
|
|
|
define Build/InstallDev
|
|
$(foreach device,$(BUILD_DEVICES), \
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)/$(device)
|
|
)
|
|
$(foreach device,$(BUILD_DEVICES), \
|
|
$(CP) $(patsubst %,$(PKG_BUILD_DIR)/%,$(UBOOT_IMAGE)) $(STAGING_DIR_IMAGE)/$(device)/
|
|
)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|