17fd7f97b06270b122ab5497951ed3d894df4b25
[openwrt/staging/wigyori.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 include $(INCLUDE_DIR)/image.mk
10
11 PKG_NAME:=uboot-layerscape
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/u-boot.git
19 PKG_SOURCE_VERSION:=aefcbf4c2bb36e1f0ead61181e5fe1119b5683ad
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 IMAGE:=
32 endef
33
34 define uboot/ls1043ardb
35 TITLE:=U-Boot $(PKG_NAME)-$(PKG_VERSION) for NXP ls1043ardb 64b Dev Board
36 CONFIG=ls1043ardb
37 endef
38
39 define uboot/ls1012ardb
40 TITLE:=U-Boot $(PKG_NAME)-$(PKG_VERSION) for NXP ls1012ardb 64b Dev Board
41 CONFIG=ls1012ardb_qspi
42 IMAGE=u-boot-swap.bin
43 endef
44
45 UBOOTS := \
46 ls1043ardb \
47 ls1012ardb
48
49 define Package/uboot/template
50 define Package/uboot-layerscape-64b-$(1)
51 SECTION:=boot
52 CATEGORY:=Boot Loaders
53 DEPENDS:= @TARGET_layerscape_64b
54 TITLE:=$(2)
55 URL:=http://git.freescale.com/git/cgit.cgi/ppc/sdk/u-boot.git/snapshot
56 VARIANT:=$(1)
57 MAINTAINER:=Jiang Yutang <jiangyutang1978@gmail.com>
58 endef
59 endef
60
61 define BuildUBootPackage
62 $(eval $(uboot/Default))
63 $(eval $(uboot/$(1)))
64 $(call Package/uboot/template,$(1),$(TITLE))
65 endef
66
67 ifdef BUILD_VARIANT
68 $(eval $(call uboot/$(BUILD_VARIANT)))
69 UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
70 UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),u-boot-dtb.bin)
71 endif
72
73 define Build/Configure
74 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
75 $(UBOOT_CONFIG)_config
76 endef
77
78 define Build/Compile
79 +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
80 CROSS_COMPILE=$(TARGET_CROSS) DTC=$(LINUX_DIR)/scripts/dtc/dtc
81 endef
82
83 define Package/uboot/install/default
84 $(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(KDIR)/$(1)-64b-uboot.bin
85 endef
86
87 define Package/uboot/install/template
88 define Package/uboot-layerscape-64b-$(1)/install
89 $(call Package/uboot/install/default,$(2))
90 endef
91 endef
92
93 $(foreach u,$(UBOOTS), \
94 $(eval $(call Package/uboot/install/template,$(u),$(u))) \
95 )
96
97 $(foreach u,$(UBOOTS), \
98 $(eval $(call BuildUBootPackage,$(u))) \
99 $(eval $(call BuildPackage,uboot-layerscape-64b-$(u))) \
100 )