uboot-at91: move BUILD_SUBTARGET from U-Boot/Default to devices
[oweals/openwrt.git] / package / boot / uboot-at91 / Makefile
1 #
2 # Copyright (C) 2016 Ben Whitten <ben.whitten@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_VERSION:=2016.05
11 PKG_RELEASE:=1
12
13 PKG_HASH:=87d02275615aaf0cd007b54cbe9fbadceef2bee7c79e6c323ea1ae8956dcb171
14
15 include $(INCLUDE_DIR)/u-boot.mk
16 include $(INCLUDE_DIR)/package.mk
17
18 define U-Boot/Default
19   BUILD_TARGET:=at91
20   UBOOT_IMAGE:=u-boot.bin boot.bin
21 endef
22
23 define U-Boot/at91sam9m10g45ek_nandflash
24   NAME:=AT91SAM9M10G45-EK board (NandFlash)
25   BUILD_SUBTARGET:=legacy
26 endef
27
28 define U-Boot/at91sam9x5ek_nandflash
29   NAME:=AT91SAM9X5-EK board (NandFlash)
30   BUILD_SUBTARGET:=legacy
31 endef
32
33 UBOOT_TARGETS := \
34         at91sam9m10g45ek_nandflash \
35         at91sam9x5ek_nandflash
36
37 define Build/Compile
38         +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
39                 CROSS_COMPILE=$(TARGET_CROSS) \
40                 KCFLAGS="$(filter-out -fstack-protector, $(TARGET_CFLAGS))"
41 endef
42
43 $(eval $(call BuildPackage/U-Boot))