diff options
author | John Crispin <blogic@openwrt.org> | 2009-10-04 21:58:18 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2009-10-04 21:58:18 +0000 |
commit | 0f2923cc47cd553358e153c0b92733c98c81c1c7 (patch) | |
tree | 20fb3c2ffd7f1291782a77a3a7ed1793cf036d88 /package/uboot-ifxmips/Makefile | |
parent | d1b3ad0612032990cf954e19f86ea4897d61a57f (diff) | |
download | upstream-0f2923cc47cd553358e153c0b92733c98c81c1c7.tar.gz upstream-0f2923cc47cd553358e153c0b92733c98c81c1c7.tar.bz2 upstream-0f2923cc47cd553358e153c0b92733c98c81c1c7.zip |
fixes ifxmips uboot compile, adds uart uploadable image and fix for wippies homebox flash
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17856 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-ifxmips/Makefile')
-rw-r--r-- | package/uboot-ifxmips/Makefile | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/package/uboot-ifxmips/Makefile b/package/uboot-ifxmips/Makefile index 8cc8b601c6..b445356f5e 100644 --- a/package/uboot-ifxmips/Makefile +++ b/package/uboot-ifxmips/Makefile @@ -41,7 +41,7 @@ UBOOT_MAKE_OPTS:=\ CROSS_COMPILE_UCLIBC=1 \ COMPRESS=lzma \ PLATFORM_CPU=mips32r2 \ - UBOOT_RAM_TEXT_BASE=0xA0400000 + UBOOT_RAM_TEXT_BASE=0xA0400000 \ define Build/Configure $(MAKE) -s -C $(PKG_BUILD_DIR) \ @@ -50,18 +50,25 @@ define Build/Configure endef define Build/Compile - $(MAKE) -s -C $(PKG_BUILD_DIR) \ + $(MAKE) -C $(PKG_BUILD_DIR) \ $(UBOOT_MAKE_OPTS) \ + OWRT_FLAGS="-DTEXT_BASE=0xa0400000" \ ifx_all - if [ `stat -c%s $(PKG_BUILD_DIR)/u-boot.ifx` -gt 65536 ] ;\ - then \ - echo "u-boot.ifx file has exceeded 64MB in size."; exit 1; \ - fi + $(CP) $(PKG_BUILD_DIR)/u-boot.srec $(PKG_BUILD_DIR)/asc.srec + $(PKG_BUILD_DIR)/gct \ + $(PKG_BUILD_DIR)/danube_ref_ddr166.conf \ + $(PKG_BUILD_DIR)/asc.srec \ + $(PKG_BUILD_DIR)/u-boot.asc + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(UBOOT_MAKE_OPTS) \ + OWRT_FLAGS="-DDANUBE_BOOT_FROM_EBU=1 -DTEXT_BASE=0xB0000000" \ + clean ifx_all endef define Package/uboot-ifxmips/install mkdir -p $(1) dd if=$(PKG_BUILD_DIR)/u-boot.ifx of=$(1)/u-boot.ifx bs=64k conv=sync + $(CP) $(PKG_BUILD_DIR)/u-boot.asc $(1) endef $(eval $(call BuildPackage,uboot-ifxmips)) |