413289a7f9384f383013c19a75f1c3f9bf812021
[openwrt/openwrt.git] / package / boot / uboot-xburst / Makefile
1 #
2 # Copyright (C) 2010 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 include $(INCLUDE_DIR)/kernel.mk
10
11 PKG_NAME:=u-boot
12 PKG_VERSION:=2012.10-rc2
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:= \
18 http://mirror2.openwrt.org/sources \
19 ftp://ftp.denx.de/pub/u-boot
20 PKG_HASH:=6d094cafa7ecea8b671fbdcd21130b6a4f5744fc47dd263e101ed5d3629dffd4
21 PKG_TARGETS:=bin
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/qi_lb60
35 TITLE:=U-boot for the qi_lb60 board
36 endef
37
38 UBOOTS:=qi_lb60
39
40 define Package/uboot/template
41 define Package/uboot-xburst-$(1)
42 SECTION:=boot
43 CATEGORY:=Boot Loaders
44 DEPENDS:=@TARGET_xburst
45 TITLE:=$(2)
46 URL:=http://www.denx.de/wiki/UBoot/WebHome
47 VARIANT:=$(1)
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
58 ifdef BUILD_VARIANT
59 $(eval $(call uboot/$(BUILD_VARIANT)))
60 UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
61 UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
62 endif
63
64 define Build/Configure
65 $(MAKE) -C $(PKG_BUILD_DIR) \
66 $(UBOOT_CONFIG)_config
67 endef
68
69 define Build/Compile
70 $(MAKE) -C $(PKG_BUILD_DIR) \
71 CROSS_COMPILE=$(TARGET_CROSS)
72 endef
73
74 define Package/uboot/install/template
75 define Package/uboot-xburst-$(1)/install
76 $(CP) $(PKG_BUILD_DIR)/u-boot-xburst.bin $(BIN_DIR)/$(2)
77 rmdir $$(1)
78 endef
79 endef
80
81 $(foreach u,$(UBOOTS), \
82 $(eval $(call Package/uboot/install/template,$(u),openwrt-$(BOARD)-$(u)-u-boot.bin)) \
83 )
84
85 $(foreach u,$(UBOOTS), \
86 $(eval $(call BuildUbootPackage,$(u))) \
87 $(eval $(call BuildPackage,uboot-xburst-$(u))) \
88 )