Root/package/uboot-kirkwood/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
8include $(TOPDIR)/rules.mk
9include $(INCLUDE_DIR)/kernel.mk
10
11PKG_NAME:=u-boot
12PKG_VERSION:=2010.09
13PKG_RELEASE:=1
14
15PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
16PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
18PKG_MD5SUM:=
19PKG_TARGETS:=bin
20
21include $(INCLUDE_DIR)/package.mk
22
23define uboot/Default
24  TITLE:=
25  CONFIG:=
26  IMAGE:=
27endef
28
29define uboot/sheevaplug
30  TITLE:=U-boot for the Sheevaplug
31endef
32
33define uboot/dockstar
34  TITLE:=U-boot for the Seagate Dockstar
35endef
36
37define uboot/iconnect
38  TITLE:=U-boot for the Iomega iConnect Wireless
39endef
40
41UBOOTS:=sheevaplug dockstar iconnect
42
43define Package/uboot/template
44define Package/uboot-kirkwood-$(1)
45  SECTION:=boot
46  CATEGORY:=Boot Loaders
47  DEPENDS:=@TARGET_kirkwood
48  TITLE:=$(2)
49  URL:=http://www.denx.de/wiki/U-Boot
50  VARIANT:=$(1)
51endef
52endef
53
54define BuildUbootPackage
55    $(eval $(uboot/Default))
56    $(eval $(uboot/$(1)))
57    $(call Package/uboot/template,$(1),$(TITLE))
58endef
59
60
61ifdef BUILD_VARIANT
62$(eval $(call uboot/$(BUILD_VARIANT)))
63UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
64UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
65endif
66
67define Build/Prepare
68    $(call Build/Prepare/Default)
69    $(CP) ./files/* $(PKG_BUILD_DIR) || true
70    find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
71endef
72
73define Build/Configure
74    $(MAKE) -C $(PKG_BUILD_DIR) \
75        $(UBOOT_CONFIG)_config
76endef
77
78define Build/Compile
79    $(MAKE) -C $(PKG_BUILD_DIR) \
80        u-boot.kwb \
81        CROSS_COMPILE=$(TARGET_CROSS)
82endef
83
84define Package/uboot/install/default
85    $(INSTALL_DIR) $(BIN_DIR)
86    $(CP) $(PKG_BUILD_DIR)/u-boot.bin \
87        $(BIN_DIR)/openwrt-$(BOARD)-$(1)-u-boot.bin
88    $(CP) $(PKG_BUILD_DIR)/u-boot.kwb \
89        $(BIN_DIR)/openwrt-$(BOARD)-$(1)-u-boot.kwb
90endef
91
92define Package/uboot/install/template
93define Package/uboot-kirkwood-$(1)/install
94    $(call Package/uboot/install/default,$(2))
95endef
96endef
97
98$(foreach u,$(UBOOTS), \
99    $(eval $(call Package/uboot/install/template,$(u),$(u))) \
100)
101
102$(foreach u,$(UBOOTS), \
103    $(eval $(call BuildUbootPackage,$(u))) \
104    $(eval $(call BuildPackage,uboot-kirkwood-$(u))) \
105)
106

Archive Download this file



interactive