X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/240bf1625edcc439b62aea43a0983f8207b541b1..71d6652e39edfb3381f0eed8928c648deea83b6a:/package/uboot-ifxmips/Makefile

diff --git a/package/uboot-ifxmips/Makefile b/package/uboot-ifxmips/Makefile
index 7895502b3..8cc8b601c 100644
--- a/package/uboot-ifxmips/Makefile
+++ b/package/uboot-ifxmips/Makefile
@@ -10,13 +10,12 @@ include $(INCLUDE_DIR)/kernel.mk
 
 PKG_NAME:=u-boot
 PKG_VERSION:=1.1.5
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 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:=579707c8ecbf1ab4127285d2aac2a9ee
-PKG_CAT:=bzcat
 PKG_TARGETS:=bin
 
 include $(INCLUDE_DIR)/package.mk
@@ -31,12 +30,33 @@ endef
 
 define Build/Prepare
 	$(call Build/Prepare/Default)
-	cp -r ./files/* $(PKG_BUILD_DIR)
+	cp -r $(CP_OPTS) ./files/* $(PKG_BUILD_DIR)
 	find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
 endef
 
+UBOOT_CONFIG:=danube
+
+UBOOT_MAKE_OPTS:=\
+	CROSS_COMPILE=$(TARGET_CROSS) \
+	CROSS_COMPILE_UCLIBC=1 \
+	COMPRESS=lzma \
+	PLATFORM_CPU=mips32r2 \
+	UBOOT_RAM_TEXT_BASE=0xA0400000
+
+define Build/Configure
+	$(MAKE) -s -C $(PKG_BUILD_DIR) \
+		$(UBOOT_MAKE_OPTS) \
+		$(UBOOT_CONFIG)_config
+endef
+
 define Build/Compile
-	cd $(PKG_BUILD_DIR);chmod a+x build_danube.sh;./build_danube.sh
+	$(MAKE) -s -C $(PKG_BUILD_DIR) \
+		$(UBOOT_MAKE_OPTS) \
+		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
 endef
 
 define Package/uboot-ifxmips/install