2009-07-08 19:58:31 +03:00
|
|
|
#
|
2009-07-25 06:55:48 +03:00
|
|
|
# Copyright (C) 2009 Qi Hardware, Inc.
|
2009-07-08 19:58:31 +03:00
|
|
|
#
|
2009-07-25 06:55:48 +03:00
|
|
|
# This is free software, licensed under the GNU General Public License v3
|
|
|
|
# or any later.
|
2009-07-08 19:58:31 +03:00
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=u-boot
|
2009-10-12 07:06:23 +03:00
|
|
|
PKG_VERSION:=2009.08
|
2009-07-08 19:58:31 +03:00
|
|
|
|
2009-07-10 05:35:24 +03:00
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2009-07-08 19:58:31 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-10-12 07:06:23 +03:00
|
|
|
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
|
|
|
|
PKG_CAT:=bzcat
|
2009-07-08 19:58:31 +03:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
UBOOT_CONFIG=$(strip $(subst ",, $(CONFIG_XBURST_UBOOT_TARGET)))
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) $(UBOOT_CONFIG)_config
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
mkdir -p $(BIN_DIR)
|
2009-08-20 20:23:30 +03:00
|
|
|
cp $(PKG_BUILD_DIR)/u-boot-nand.bin $(BIN_DIR)/openwrt-$(BOARD)-u-boot.bin
|
2009-07-08 19:58:31 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Build/DefaultTargets))
|