2 # Copyright (C) 2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
9 include $(INCLUDE_DIR
)/kernel.mk
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
:=ftp
://ftp.denx.de
/pub
/u-boot
21 include $(INCLUDE_DIR
)/package.mk
29 define uboot
/sheevaplug
30 TITLE
:=U-boot for the Sheevaplug
34 TITLE
:=U-boot for the Seagate Dockstar
38 TITLE
:=U-boot for the Iomega iConnect Wireless
41 UBOOTS
:=sheevaplug dockstar iconnect
43 define Package
/uboot
/template
44 define Package
/uboot-kirkwood-
$(1)
46 CATEGORY
:=Boot Loaders
47 DEPENDS
:=@TARGET_kirkwood
49 URL
:=http
://www.denx.de
/wiki
/U-Boot
54 define BuildUbootPackage
55 $(eval
$(uboot
/Default
))
57 $(call Package
/uboot
/template
,$(1),$(TITLE
))
62 $(eval
$(call uboot
/$(BUILD_VARIANT
)))
63 UBOOT_CONFIG
:=$(if
$(CONFIG
),$(CONFIG
),$(BUILD_VARIANT
))
64 UBOOT_IMAGE
:=$(if
$(IMAGE
),$(IMAGE
),openwrt-
$(BOARD
)-$(BUILD_VARIANT
)-u-boot.bin
)
68 $(call Build
/Prepare
/Default
)
69 $(CP
) .
/files
/* $(PKG_BUILD_DIR
) || true
70 find
$(PKG_BUILD_DIR
) -name .svn |
$(XARGS
) rm -rf
73 define Build
/Configure
74 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
75 $(UBOOT_CONFIG
)_config
79 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
81 CROSS_COMPILE
=$(TARGET_CROSS
)
84 define 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
92 define Package
/uboot
/install/template
93 define Package
/uboot-kirkwood-
$(1)/install
94 $(call Package
/uboot
/install/default
,$(2))
98 $(foreach u
,$(UBOOTS
), \
99 $(eval
$(call Package
/uboot
/install/template
,$(u
),$(u
))) \
102 $(foreach u
,$(UBOOTS
), \
103 $(eval
$(call BuildUbootPackage
,$(u
))) \
104 $(eval
$(call BuildPackage
,uboot-kirkwood-
$(u
))) \