ath79: do not build TP-Link tiny images by default
[oweals/openwrt.git] / package / boot / uboot-imx6 / Makefile
1 #
2 # Copyright (C) 2013-2014 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_VERSION:=2020.04
11 PKG_RELEASE:=1
12
13 PKG_HASH:=fe732aaf037d9cc3c0909bad8362af366ae964bbdac6913a34081ff4ad565372
14
15 include $(INCLUDE_DIR)/u-boot.mk
16 include $(INCLUDE_DIR)/package.mk
17
18 define U-Boot/Default
19   BUILD_TARGET:=imx6
20   UBOOT_IMAGE:=u-boot.imx
21 endef
22
23 define U-Boot/apalis_imx6
24   NAME:=Toradex Apalis
25   UBOOT_IMAGE:=SPL u-boot.img u-boot-with-spl.imx
26   UBOOT_MAKE_FLAGS:=SPL u-boot.img u-boot-with-spl.imx
27 endef
28
29 define U-Boot/mx6cuboxi
30    NAME:=SolidRun Cubox-i boards
31    UBOOT_IMAGE:=SPL u-boot.img
32    UBOOT_MAKE_FLAGS:=SPL u-boot.img
33    BUILD_DEVICES:=cubox-i
34    HIDDEN:=1
35 endef
36
37 define U-Boot/mx6sabresd
38   NAME:=SABRE i.MX6Quad board
39 endef
40
41 define U-Boot/nitrogen6dl
42   NAME:=Nitrogen6x i.MX6Dual-Lite 1GB board
43 endef
44
45 define U-Boot/nitrogen6dl2g
46   NAME:=Nitrogen6x i.MX6Dual-Lite 2GB board
47 endef
48
49 define U-Boot/nitrogen6q
50   NAME:=Nitrogen6x/SABRE Lite (MX6Q/1GB)
51 endef
52
53 define U-Boot/nitrogen6q2g
54   NAME:=Nitrogen6x i.MX6Quad 2GB board
55 endef
56
57 define U-Boot/nitrogen6s
58   NAME:=Nitrogen6x i.MX6Solo 512MB board
59 endef
60
61 define U-Boot/nitrogen6s1g
62   NAME:=Nitrogen6x i.MX6Solo 1GB board
63 endef
64
65 define U-Boot/wandboard
66   NAME:=Wandboard Dual Lite/Quad/Solo
67   BUILD_DEVICES:=wandboard
68 endef
69
70 UBOOT_TARGETS := \
71         apalis_imx6 \
72         mx6cuboxi \
73         mx6sabresd \
74         nitrogen6dl \
75         nitrogen6dl2g \
76         nitrogen6q \
77         nitrogen6q2g \
78         nitrogen6s \
79         nitrogen6s1g \
80         wandboard
81
82 UBOOT_MAKE_FLAGS += u-boot.imx
83
84 define Build/InstallDev
85         $(INSTALL_DIR) $(STAGING_DIR_IMAGE)
86         $(foreach img,$(UBOOT_IMAGE), \
87                 $(CP) $(PKG_BUILD_DIR)/$(img) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(img); \
88         )
89 endef
90
91 $(eval $(call BuildPackage/U-Boot))