2010-08-22 16:48:28 +00:00
|
|
|
#
|
2012-07-14 23:54:20 +00:00
|
|
|
# Copyright (C) 2010-2012 OpenWrt.org
|
2010-08-22 16:48:28 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=u-boot
|
2012-07-14 23:54:20 +00:00
|
|
|
PKG_VERSION:=2012.04.01
|
2010-08-22 16:48:28 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
|
2012-07-14 23:54:20 +00:00
|
|
|
PKG_MD5SUM:=192bb231082d9159fb6e16de3039b6b2
|
2010-08-22 16:48:28 +00:00
|
|
|
PKG_TARGETS:=bin
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define uboot/Default
|
|
|
|
TITLE:=
|
|
|
|
CONFIG:=
|
|
|
|
IMAGE:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define uboot/sheevaplug
|
2012-07-14 23:54:20 +00:00
|
|
|
TITLE:=U-Boot for the SheevaPlug
|
2010-08-22 16:48:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define uboot/dockstar
|
2012-07-14 23:54:20 +00:00
|
|
|
TITLE:=U-Boot for the Seagate DockStar
|
2010-08-22 16:48:28 +00:00
|
|
|
endef
|
|
|
|
|
2010-10-04 09:49:49 +00:00
|
|
|
define uboot/iconnect
|
2012-07-14 23:54:20 +00:00
|
|
|
TITLE:=U-Boot for the Iomega iConnect Wireless
|
2010-10-04 09:49:49 +00:00
|
|
|
endef
|
|
|
|
|
2012-07-14 23:54:20 +00:00
|
|
|
define uboot/ib62x0
|
|
|
|
TITLE:=U-Boot for the RaidSonic ICY BOX NAS6210 and NAS6220
|
|
|
|
endef
|
|
|
|
|
|
|
|
UBOOTS:=sheevaplug dockstar iconnect ib62x0
|
2010-08-22 16:48:28 +00:00
|
|
|
|
|
|
|
define Package/uboot/template
|
|
|
|
define Package/uboot-kirkwood-$(1)
|
|
|
|
SECTION:=boot
|
|
|
|
CATEGORY:=Boot Loaders
|
|
|
|
DEPENDS:=@TARGET_kirkwood
|
|
|
|
TITLE:=$(2)
|
|
|
|
URL:=http://www.denx.de/wiki/U-Boot
|
|
|
|
VARIANT:=$(1)
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
2012-07-14 23:54:20 +00:00
|
|
|
define BuildUBootPackage
|
2010-08-22 16:48:28 +00:00
|
|
|
$(eval $(uboot/Default))
|
|
|
|
$(eval $(uboot/$(1)))
|
|
|
|
$(call Package/uboot/template,$(1),$(TITLE))
|
|
|
|
endef
|
|
|
|
|
|
|
|
ifdef BUILD_VARIANT
|
|
|
|
$(eval $(call uboot/$(BUILD_VARIANT)))
|
|
|
|
UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT))
|
2010-10-21 08:54:36 +00:00
|
|
|
UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin)
|
2010-08-22 16:48:28 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
$(call Build/Prepare/Default)
|
2012-07-14 23:54:20 +00:00
|
|
|
$(CP) ./files/* $(PKG_BUILD_DIR)
|
2010-08-22 16:48:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
$(UBOOT_CONFIG)_config
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2010-10-04 09:49:49 +00:00
|
|
|
u-boot.kwb \
|
2010-08-22 16:48:28 +00:00
|
|
|
CROSS_COMPILE=$(TARGET_CROSS)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uboot/install/default
|
|
|
|
$(INSTALL_DIR) $(BIN_DIR)
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/u-boot.bin \
|
|
|
|
$(BIN_DIR)/openwrt-$(BOARD)-$(1)-u-boot.bin
|
2010-10-04 09:49:49 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/u-boot.kwb \
|
|
|
|
$(BIN_DIR)/openwrt-$(BOARD)-$(1)-u-boot.kwb
|
2012-07-14 23:54:20 +00:00
|
|
|
$(INSTALL_DIR) $(BIN_DIR)/u-boot-kwboot/
|
|
|
|
$(CP) $(PKG_BUILD_DIR)/tools/kwboot \
|
|
|
|
$(BIN_DIR)/u-boot-kwboot/
|
2010-08-22 16:48:28 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uboot/install/template
|
|
|
|
define Package/uboot-kirkwood-$(1)/install
|
|
|
|
$(call Package/uboot/install/default,$(2))
|
|
|
|
endef
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach u,$(UBOOTS), \
|
|
|
|
$(eval $(call Package/uboot/install/template,$(u),$(u))) \
|
|
|
|
)
|
|
|
|
|
|
|
|
$(foreach u,$(UBOOTS), \
|
2012-07-14 23:54:20 +00:00
|
|
|
$(eval $(call BuildUBootPackage,$(u))) \
|
2010-08-22 16:48:28 +00:00
|
|
|
$(eval $(call BuildPackage,uboot-kirkwood-$(u))) \
|
|
|
|
)
|