Root/package/uboot-omap35xx/Makefile

1#
2# Copyright (C) 2011 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.12
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/omap3_overo
30  TITLE:=U-boot for the gumstix board
31endef
32
33UBOOTS:=omap3_overo
34
35define Package/uboot/template
36define Package/uboot-omap35xx-$(1)
37  SECTION:=boot
38  CATEGORY:=Boot Loaders
39  DEPENDS:=@TARGET_omap35xx
40  TITLE:=$(2)
41  URL:=http://www.denx.de/wiki/U-Boot
42  VARIANT:=$(1)
43endef
44endef
45
46define BuildUbootPackage
47    $(eval $(uboot/Default))
48    $(eval $(uboot/$(1)))
49    $(call Package/uboot/template,$(1),$(TITLE))
50endef
51
52
53ifdef BUILD_VARIANT
54$(eval $(call uboot/$(BUILD_VARIANT)))
55UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
56UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
57endif
58
59define Build/Prepare
60    $(call Build/Prepare/Default)
61    $(CP) ./files/* $(PKG_BUILD_DIR)
62    find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
63endef
64
65define Build/Configure
66    $(MAKE) -C $(PKG_BUILD_DIR) \
67        $(UBOOT_CONFIG)_config
68endef
69
70define Build/Compile
71    $(MAKE) -C $(PKG_BUILD_DIR) \
72        CROSS_COMPILE=$(TARGET_CROSS)
73endef
74
75define Package/uboot/install/template
76define Package/uboot-omap35xx-$(1)/install
77    $(INSTALL_DIR) $$(1)
78    $(CP) $(PKG_BUILD_DIR)/u-boot.bin $(BIN_DIR)/$(2)
79endef
80endef
81
82$(foreach u,$(UBOOTS), \
83    $(eval $(call Package/uboot/install/template,$(u),openwrt-$(BOARD)-$(u)-u-boot.bin)) \
84)
85
86$(foreach u,$(UBOOTS), \
87    $(eval $(call BuildUbootPackage,$(u))) \
88    $(eval $(call BuildPackage,uboot-omap35xx-$(u))) \
89)
90

Archive Download this file



interactive