packages: uboot-mxs: place binaries in the designated path
[openwrt/svn-archive/archive.git] / package / boot / uboot-mxs / Makefile
1 #
2 # Copyright (C) 2013-2015 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:=2015.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:=3dac9a0b46fed77fc768ad3bd2d68c05
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 2015.07 for the Olinuxino i.MX233
34 endef
35
36 define uboot/duckbill
37 TITLE:=U-Boot 2015.07 for the I2SE Duckbill
38 endef
39
40 UBOOTS := \
41 mx23_olinuxino \
42 duckbill
43
44 define Package/uboot/template
45 define Package/uboot-mxs-$(1)
46 SECTION:=boot
47 CATEGORY:=Boot Loaders
48 DEPENDS:=@TARGET_mxs
49 TITLE:=$(2)
50 URL:=http://www.denx.de/wiki/U-Boot
51 VARIANT:=$(1)
52 MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
53 endef
54 endef
55
56 define BuildUBootPackage
57 $(eval $(uboot/Default))
58 $(eval $(uboot/$(1)))
59 $(call Package/uboot/template,$(1),$(TITLE))
60 endef
61
62 ifdef BUILD_VARIANT
63 $(eval $(call uboot/$(BUILD_VARIANT)))
64 UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
65 UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
66 endif
67
68 define Build/Configure
69 $(MAKE) -C $(PKG_BUILD_DIR) \
70 $(UBOOT_CONFIG)_config
71 endef
72
73 define Build/Compile
74 $(MAKE) -C $(PKG_BUILD_DIR) \
75 CROSS_COMPILE=$(TARGET_CROSS) u-boot.sb
76 endef
77
78 define Package/uboot/install/default
79 $(INSTALL_DIR) $(BIN_DIR)/uboot-$(BOARD)-$(1)
80 dd if=$(PKG_BUILD_DIR)/u-boot.sb of=$(BIN_DIR)/uboot-$(BOARD)-$(1)/uboot-$(BOARD)-$(1).sb bs=512 seek=4
81 endef
82
83 define Package/uboot/install/template
84 define Package/uboot-mxs-$(1)/install
85 $(call Package/uboot/install/default,$(2))
86 endef
87 endef
88
89 $(foreach u,$(UBOOTS), \
90 $(eval $(call Package/uboot/install/template,$(u),$(u))) \
91 )
92
93 $(foreach u,$(UBOOTS), \
94 $(eval $(call BuildUBootPackage,$(u))) \
95 $(eval $(call BuildPackage,uboot-mxs-$(u))) \
96 )