Add more license tags with SPDX identifiers
[openwrt/staging/lynxis/omap.git] / package / boot / uboot-mxs / Makefile
1 #
2 # Copyright (C) 2013 OpenWrt.org
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:=u-boot
11 PKG_VERSION:=2014.07
12 PKG_RELEASE:=1
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:= \
17 http://mirror2.openwrt.org/sources \
18 ftp://ftp.denx.de/pub/u-boot
19 PKG_MD5SUM:=36d4bad687edcafa396fee607e505d4e
20
21 PKG_LICENSE:=GPL-2.0 GPL-2.0+
22 PKG_LICENSE_FILES:=Licenses/README
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define uboot/Default
27 TITLE:=
28 CONFIG:=
29 IMAGE:=
30 endef
31
32 define uboot/mx23_olinuxino
33 TITLE:=U-Boot 2014.07 for the Olinuxino i.MX233
34 endef
35
36 UBOOTS := \
37 mx23_olinuxino
38
39 define Package/uboot/template
40 define Package/uboot-mxs-$(1)
41 SECTION:=boot
42 CATEGORY:=Boot Loaders
43 DEPENDS:=@TARGET_mxs
44 TITLE:=$(2)
45 URL:=http://www.denx.de/wiki/U-Boot
46 VARIANT:=$(1)
47 MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
48 endef
49 endef
50
51 define BuildUBootPackage
52 $(eval $(uboot/Default))
53 $(eval $(uboot/$(1)))
54 $(call Package/uboot/template,$(1),$(TITLE))
55 endef
56
57 ifdef BUILD_VARIANT
58 $(eval $(call uboot/$(BUILD_VARIANT)))
59 UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
60 UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
61 endif
62
63 define Build/Configure
64 $(MAKE) -C $(PKG_BUILD_DIR) \
65 $(UBOOT_CONFIG)_config
66 endef
67
68 define Build/Compile
69 $(MAKE) -C $(PKG_BUILD_DIR) \
70 CROSS_COMPILE=$(TARGET_CROSS) u-boot.sb
71 endef
72
73
74 define Package/uboot/install/default
75 $(INSTALL_DIR) $(BIN_DIR)/uboot-$(BOARD)-$(1)
76 dd if=$(PKG_BUILD_DIR)/u-boot.sb of=$(BIN_DIR)/uboot-$(BOARD)-$(1).sb bs=512 seek=4
77 endef
78
79 define Package/uboot/install/template
80 define Package/uboot-mxs-$(1)/install
81 $(call Package/uboot/install/default,$(2))
82 endef
83 endef
84
85 $(foreach u,$(UBOOTS), \
86 $(eval $(call Package/uboot/install/template,$(u),$(u))) \
87 )
88
89 $(foreach u,$(UBOOTS), \
90 $(eval $(call BuildUBootPackage,$(u))) \
91 $(eval $(call BuildPackage,uboot-mxs-$(u))) \
92 )