e704c357d1711641ca699ee8b98e5cdf6d7b2c13
[oweals/openwrt.git] / package / boot / at91bootstrap / Makefile
1 #
2 # Copyright (C) 2016 Microchip Technology Inc.
3 #     <Sandeepsheriker.mallikarjun@microchip.com>
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=at91bootstrap
12 PKG_VERSION:=v3.8.8
13 PKG_RELEASE:=
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=https://github.com/linux4sam/at91bootstrap.git
17 PKG_SOURCE_VERSION:=3d33a4e0707c61007a5278f6620453502f7500db
18
19 PKG_BUILD_DIR = \
20     $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include at91bootstrap.mk
23 include $(INCLUDE_DIR)/package.mk
24
25 define AT91Bootstrap/Default
26   BUILD_TARGET:=at91
27   BUILD_SUBTARGET:=sama5
28   HIDDEN:=1
29   AT91BOOTSTRAP_IMAGE:=at91bootstrap.bin
30 endef
31
32 define AT91Bootstrap/sama5d2_xplaineddf_uboot
33   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SPI Flash)
34   BUILD_DEVICES:=at91-sama5d2_xplained
35 endef
36
37 define AT91Bootstrap/sama5d2_xplaineddf_qspi_uboot
38   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (QSPI Flash)
39   BUILD_DEVICES:=at91-sama5d2_xplained
40 endef
41
42 define AT91Bootstrap/sama5d2_xplainedsd_uboot
43   TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SDcard/EMMC)
44   BUILD_DEVICES:=at91-sama5d2_xplained
45 endef
46
47 define AT91Bootstrap/sama5d3_xplainednf_uboot
48   TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (Nand Flash)
49   BUILD_DEVICES:=at91-sama5d3_xplained
50 endef
51
52 define AT91Bootstrap/sama5d3_xplainedsd_uboot
53   TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (SDcard)
54   BUILD_DEVICES:=at91-sama5d3_xplained
55 endef
56
57 define AT91Bootstrap/sama5d4_xplainednf_uboot_secure
58   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (Nand Flash)
59   BUILD_DEVICES:=at91-sama5d4_xplained
60 endef
61
62 define AT91Bootstrap/sama5d4_xplaineddf_uboot_secure
63   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SPI Flash)
64   BUILD_DEVICES:=at91-sama5d4_xplained
65 endef
66
67 define AT91Bootstrap/sama5d4_xplainedsd_uboot_secure
68   TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SDcard)
69   BUILD_DEVICES:=at91-sama5d4_xplained
70 endef
71
72 AT91BOOTSTRAP_TARGETS := \
73     sama5d2_xplaineddf_uboot \
74     sama5d2_xplaineddf_qspi_uboot \
75     sama5d2_xplainedsd_uboot \
76     sama5d3_xplainednf_uboot \
77     sama5d3_xplainedsd_uboot \
78     sama5d4_xplainednf_uboot_secure \
79     sama5d4_xplaineddf_uboot_secure \
80     sama5d4_xplainedsd_uboot_secure
81
82 define Build/Compile
83         +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
84         CROSS_COMPILE=$(TARGET_CROSS)
85 endef
86
87 $(eval $(call BuildPackage/AT91Bootstrap))