layerscape: add 64b/32b target for ls1012ardb device
[openwrt/staging/wigyori.git] / package / boot / uboot-layerscape-32b / 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 include $(INCLUDE_DIR)/image.mk
10
11 PKG_NAME:=uboot-layerscape-32bit
12 PKG_VERSION:=v1.0
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_URL:=https://github.com/fsl-jyt/uboot-ls-32b.git
19 PKG_SOURCE_VERSION:=719f8b606334bc73367f78c204dce69786963b65
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
22
23 PKG_LICENSE:=GPL-2.0 GPL-2.0+
24 PKG_LICENSE_FILES:=Licenses/README
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define uboot/Default
29 TITLE:=
30 CONFIG:=
31 endef
32
33 define uboot/ls1043ardb
34 TITLE:=U-Boot binary $(PKG_NAME)-$(PKG_VERSION) for NXP ls1043ardb 32b Dev Board
35 CONFIG=ls1043ardb-uboot.bin
36 endef
37
38 define uboot/ls1012ardb
39 TITLE:=U-Boot binary $(PKG_NAME)-$(PKG_VERSION) for NXP ls1012ardb 32b Dev Board
40 CONFIG=ls1012ardb-uboot.bin.swap
41 endef
42
43 UBOOTS := \
44 ls1043ardb \
45 ls1012ardb
46
47 define Package/uboot/template
48 define Package/uboot-layerscape-32b-$(1)
49 SECTION:=boot
50 CATEGORY:=Boot Loaders
51 DEPENDS:= @TARGET_layerscape_32b
52 TITLE:=$(2)
53 URL:=https://github.com/fsl-jyt/uboot-ls-32b.git
54 VARIANT:=$(1)
55 MAINTAINER:=Jiang Yutang <jiangyutang1978@gmail.com>
56 endef
57 endef
58
59 define BuildUBootPackage
60 $(eval $(uboot/Default))
61 $(eval $(uboot/$(1)))
62 $(call Package/uboot/template,$(1),$(TITLE))
63 endef
64
65 ifdef BUILD_VARIANT
66 $(eval $(call uboot/$(BUILD_VARIANT)))
67 UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
68 endif
69
70 define Build/Configure
71 endef
72
73 define Build/Compile
74 endef
75
76 define Package/uboot/install/default
77 $(CP) $(PKG_BUILD_DIR)/$(UBOOT_CONFIG) $(KDIR)/$(1)-32b-uboot.bin
78 endef
79
80 define Package/uboot/install/template
81 define Package/uboot-layerscape-32b-$(1)/install
82 $(call Package/uboot/install/default,$(2))
83 endef
84 endef
85
86 $(foreach u,$(UBOOTS), \
87 $(eval $(call Package/uboot/install/template,$(u),$(u))) \
88 )
89
90 $(foreach u,$(UBOOTS), \
91 $(eval $(call BuildUBootPackage,$(u))) \
92 $(eval $(call BuildPackage,uboot-layerscape-32b-$(u))) \
93 )