98b129f0ff1882bcf8a091c18a48c3ad634250e7
[openwrt/staging/chunkeey.git] / package / boot / uboot-layerscape / Makefile
1 #
2 # Copyright (C) 2016 Jiang Yutang <jiangyutang1978@gmail.com>
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_NAME:=uboot-layerscape
11 PKG_VERSION:=LSDK-20.04-update-290520
12 PKG_RELEASE:=$(AUTORELEASE)
13
14 PKG_SOURCE_PROTO:=git
15 PKG_SOURCE_URL:=https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot
16 PKG_SOURCE_VERSION:=1e55b2f9e7f56b76569089b9e950f49c1579580e
17 PKG_MIRROR_HASH:=46aace27e1367f40b424a64215d524a99c3bd62f49057550039e72d5a1ab7edb
18
19 include $(INCLUDE_DIR)/u-boot.mk
20 include $(INCLUDE_DIR)/package.mk
21
22 define U-Boot/Default
23 BUILD_TARGET:=layerscape
24 BUILD_SUBTARGET:=armv8_64b
25 BUILD_DEVICES:=$(1)
26 UBOOT_IMAGE:=u-boot-dtb.bin
27 ENV_SIZE:=0x2000
28 endef
29
30 define U-Boot/fsl_ls1012a-frdm
31 NAME:=NXP LS1012AFRDM
32 UBOOT_CONFIG:=ls1012afrdm_tfa
33 ENV_SIZE:=0x40000
34 endef
35
36 define U-Boot/fsl_ls1012a-rdb
37 NAME:=NXP LS1012ARDB
38 UBOOT_CONFIG:=ls1012ardb_tfa
39 ENV_SIZE:=0x40000
40 endef
41
42 define U-Boot/fsl_ls1012a-frwy-sdboot
43 NAME:=NXP LS1012AFRWY
44 UBOOT_CONFIG:=ls1012afrwy_tfa
45 ENV_SIZE:=0x10000
46 endef
47
48 define U-Boot/fsl_ls1043a-rdb
49 NAME:=NXP LS1043ARDB
50 UBOOT_CONFIG:=ls1043ardb_tfa
51 endef
52
53 define U-Boot/fsl_ls1043a-rdb-sdboot
54 NAME:=NXP LS1043ARDB SD Card Boot
55 UBOOT_CONFIG:=ls1043ardb_tfa
56 endef
57
58 define U-Boot/fsl_ls1046a-frwy
59 NAME:=NXP LS1046AFRWY
60 UBOOT_CONFIG:=ls1046afrwy_tfa
61 endef
62
63 define U-Boot/fsl_ls1046a-frwy-sdboot
64 NAME:=NXP LS1046AFRWY SD Card Boot
65 UBOOT_CONFIG:=ls1046afrwy_tfa
66 endef
67
68 define U-Boot/fsl_ls1046a-rdb
69 NAME:=NXP LS1046ARDB
70 UBOOT_CONFIG:=ls1046ardb_tfa
71 endef
72
73 define U-Boot/fsl_ls1046a-rdb-sdboot
74 NAME:=NXP LS1046ARDB SD Card Boot
75 UBOOT_CONFIG:=ls1046ardb_tfa
76 endef
77
78 define U-Boot/fsl_ls1088a-rdb
79 NAME:=NXP LS1088ARDB
80 UBOOT_CONFIG:=ls1088ardb_tfa
81 endef
82
83 define U-Boot/fsl_ls1088a-rdb-sdboot
84 NAME:=NXP LS1088ARDB SD Card Boot
85 UBOOT_CONFIG:=ls1088ardb_tfa
86 endef
87
88 define U-Boot/fsl_ls2088a-rdb
89 NAME:=NXP LS2088ARDB
90 UBOOT_CONFIG:=ls2088ardb_tfa
91 endef
92
93 define U-Boot/fsl_ls1021a-twr
94 NAME:=NXP LS1021ATWR
95 BUILD_SUBTARGET:=armv7
96 UBOOT_CONFIG:=ls1021atwr_nor
97 ENV_SIZE:=0x20000
98 endef
99
100 define U-Boot/fsl_ls1021a-twr-sdboot
101 NAME:=NXP LS1021ATWR SD Card Boot
102 BUILD_SUBTARGET:=armv7
103 UBOOT_CONFIG:=ls1021atwr_sdcard_ifc
104 UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
105 ENV_SIZE:=0x20000
106 endef
107
108 define U-Boot/fsl_ls1021a-iot-sdboot
109 NAME:=NXP LS1021AIOT SD Card Boot
110 BUILD_SUBTARGET:=armv7
111 UBOOT_CONFIG:=ls1021aiot_sdcard
112 UBOOT_IMAGE:=u-boot-with-spl-pbl.bin
113 ENV_SIZE:=0x2000
114 endef
115
116 UBOOT_TARGETS := \
117 fsl_ls1012a-frdm \
118 fsl_ls1012a-rdb \
119 fsl_ls1012a-frwy-sdboot \
120 fsl_ls1043a-rdb \
121 fsl_ls1043a-rdb-sdboot \
122 fsl_ls1046a-frwy \
123 fsl_ls1046a-frwy-sdboot \
124 fsl_ls1046a-rdb \
125 fsl_ls1046a-rdb-sdboot \
126 fsl_ls1088a-rdb \
127 fsl_ls1088a-rdb-sdboot \
128 fsl_ls2088a-rdb \
129 fsl_ls1021a-twr \
130 fsl_ls1021a-twr-sdboot \
131 fsl_ls1021a-iot-sdboot
132
133 define Build/InstallDev
134 $(INSTALL_DIR) $(STAGING_DIR_IMAGE)
135 $(INSTALL_DATA) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) \
136 $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot.bin
137 $(PKG_BUILD_DIR)/tools/mkenvimage -s $(ENV_SIZE) \
138 -o $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-uboot-env.bin \
139 files/$(BUILD_VARIANT)-uEnv.txt
140 endef
141
142 define Package/u-boot/install/default
143 endef
144
145 $(eval $(call BuildPackage/U-Boot))