diff options
author | John Crispin <john@openwrt.org> | 2010-03-24 18:28:07 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2010-03-24 18:28:07 +0000 |
commit | 6cb7284fe0c5c312045b3038f332642ec8bc088d (patch) | |
tree | d6993c9cec2f02ee5ab4d09030ce165040594da3 /package/uboot-ifxmips/Makefile | |
parent | 1f1ad83bc29e4f9b95540a9fd5a45cbba2128c9b (diff) | |
download | upstream-6cb7284fe0c5c312045b3038f332642ec8bc088d.tar.gz upstream-6cb7284fe0c5c312045b3038f332642ec8bc088d.tar.bz2 upstream-6cb7284fe0c5c312045b3038f332642ec8bc088d.zip |
adds support to build uboot for arv452
SVN-Revision: 20408
Diffstat (limited to 'package/uboot-ifxmips/Makefile')
-rw-r--r-- | package/uboot-ifxmips/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/package/uboot-ifxmips/Makefile b/package/uboot-ifxmips/Makefile index ade82bf7b9..e51a40ad71 100644 --- a/package/uboot-ifxmips/Makefile +++ b/package/uboot-ifxmips/Makefile @@ -34,6 +34,10 @@ define Build/Prepare find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf endef +define Package/uboot-ifxmips/config + source "$(SOURCE)/Config.in" +endef + UBOOT_CONFIG:=danube UBOOT_MAKE_OPTS:=\ @@ -43,6 +47,11 @@ UBOOT_MAKE_OPTS:=\ PLATFORM_CPU=mips32r2 \ UBOOT_RAM_TEXT_BASE=0xA0400000 +A800_FIX:= +ifeq ($(CONFIG_IFXMIPS_UBOOT_A800),y) +A800_FIX += -DA800_SWITCH +endif + define Build/Configure $(MAKE) -s -C $(PKG_BUILD_DIR) \ $(UBOOT_MAKE_OPTS) \ @@ -52,7 +61,7 @@ endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ $(UBOOT_MAKE_OPTS) \ - OWRT_FLAGS="-DTEXT_BASE=0xa0400000" \ + OWRT_FLAGS="-DTEXT_BASE=0xa0400000 ${A800_FIX}" \ ifx_all $(CP) $(PKG_BUILD_DIR)/u-boot.srec $(PKG_BUILD_DIR)/asc.srec $(PKG_BUILD_DIR)/gct \ @@ -61,7 +70,7 @@ define Build/Compile $(PKG_BUILD_DIR)/u-boot.asc $(MAKE) -C $(PKG_BUILD_DIR) \ $(UBOOT_MAKE_OPTS) \ - OWRT_FLAGS="-DDANUBE_BOOT_FROM_EBU=1 -DTEXT_BASE=0xB0000000" \ + OWRT_FLAGS="-DDANUBE_BOOT_FROM_EBU=1 -DTEXT_BASE=0xB0000000 ${A800_FIX}" \ clean ifx_all endef |