X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2Favr32%2Fimage%2Fu-boot%2FMakefile;h=2d95b87694c7fe0e484928d1bb498f92279ae675;hb=22466a7fda0f79af25af18b45093a5182da663f8;hp=ec4f7fbbbb629cecc74d75e6df0014dcb86cb7fe;hpb=291da2716fff11a091835df9b0da482e85e524f7;p=openwrt-10.03%2F.git diff --git a/target/linux/avr32/image/u-boot/Makefile b/target/linux/avr32/image/u-boot/Makefile index ec4f7fbbb..2d95b8769 100644 --- a/target/linux/avr32/image/u-boot/Makefile +++ b/target/linux/avr32/image/u-boot/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=u-boot -PKG_VERSION:=1.3.2 +PKG_VERSION:=1.3.3 PKG_RELEASE:=1 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot -PKG_MD5SUM:=78b1c2722d3907b5fae2cd219dbaf927 +PKG_MD5SUM:=6ee26954bb548ad90392cd329ab5cc4c PKG_CAT:=bzcat include $(INCLUDE_DIR)/package.mk @@ -24,12 +24,12 @@ UBOOT_CONFIG=$(strip $(subst ",, $(CONFIG_AVR32_UBOOT_TARGET))) define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) $(UBOOT_CONFIG)_config - export CROSS_COMPILE=$(TARGET_CROSS); - $(MAKE) -C $(PKG_BUILD_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS) endef define Build/InstallDev - dd if=$(PKG_BUILD_DIR)/u-boot.bin of=$(BIN_DIR)/u-boot-$(CONFIG_AVR32_UBOOT_TARGET).bin bs=64k conv=sync + mkdir -p $(BIN_DIR) + dd if=$(PKG_BUILD_DIR)/u-boot.bin of=$(BIN_DIR)/u-boot-$(UBOOT_CONFIG).bin bs=64k conv=sync endef $(eval $(call Build/DefaultTargets))