OpenWrt – Blame information for rev 4
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 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-armv8_32b |
||
11 | PKG_SOURCE_DATE:=2018-01-22 |
||
12 | PKG_RELEASE:=1 |
||
13 | |||
14 | # Layerscape ARMv8 platforms use 64-bit u-boot to support both 32-bit and 64-bit |
||
15 | # kernel/rootfs. Since OpenWrt could only provide 32-bit toolchain for 32-bit targets, |
||
16 | # 64-bit u-boot images git tree is provided here whose source code actually is |
||
17 | # uboot-layerscape's source code. |
||
18 | PKG_SOURCE_PROTO:=git |
||
19 | PKG_SOURCE_URL:=https://github.com/yangbolu1991/u-boot-lede.git |
||
20 | PKG_SOURCE_VERSION:=40a40dfd8136fcc314dd442a3b24a41b1e5652dd |
||
21 | PKG_MIRROR_HASH:=3dde5a33d19c573cbdce74f5d7edb6c5ca2a26a39d503c3efe5d5ad06f01e9f5 |
||
22 | |||
23 | PKG_MAINTAINER:=Yangbo Lu <yangbo.lu@nxp.com> |
||
24 | |||
25 | include $(INCLUDE_DIR)/package.mk |
||
26 | include $(INCLUDE_DIR)/kernel.mk |
||
27 | |||
28 | define Package/uboot-layerscape-armv8_32b |
||
29 | SECTION:=boot |
||
30 | CATEGORY:=Boot Loaders |
||
31 | DEPENDS:=@TARGET_layerscape_armv8_32b |
||
32 | TITLE:=U-Boot for ARMv8 32-bit based Layerscape boards |
||
33 | DEFAULT:=y |
||
34 | HIDDEN:=1 |
||
35 | endef |
||
36 | |||
37 | define Build/Configure |
||
38 | |||
39 | endef |
||
40 | |||
41 | define Build/Compile |
||
42 | |||
43 | endef |
||
44 | |||
45 | define Build/InstallDev |
||
46 | $(INSTALL_DIR) $(STAGING_DIR_IMAGE) |
||
47 | $(CP) $(PKG_BUILD_DIR)/ls1043ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1043ardb-armv8_32b-uboot.bin |
||
48 | $(CP) $(PKG_BUILD_DIR)/ls1046ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1046ardb-armv8_32b-uboot.bin |
||
49 | $(CP) $(PKG_BUILD_DIR)/ls1012ardb-uboot.bin $(STAGING_DIR_IMAGE)/ls1012ardb-armv8_32b-uboot.bin |
||
50 | $(CP) $(PKG_BUILD_DIR)/ls1012afrdm-uboot.bin $(STAGING_DIR_IMAGE)/ls1012afrdm-armv8_32b-uboot.bin |
||
51 | endef |
||
52 | |||
53 | $(eval $(call BuildPackage,uboot-layerscape-armv8_32b)) |