| 1 | # |
| 2 | # Copyright (C) 2008 OpenWrt.org |
| 3 | # |
| 4 | # This is free software, licensed under the GNU General Public License v2. |
| 5 | # See /LICENSE for more information. |
| 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/rules.mk |
| 9 | include $(INCLUDE_DIR)/kernel.mk |
| 10 | |
| 11 | PKG_NAME:=u-boot |
| 12 | PKG_VERSION:=1.1.5 |
| 13 | PKG_RELEASE:=2 |
| 14 | |
| 15 | PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 16 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 17 | PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot |
| 18 | PKG_MD5SUM:=579707c8ecbf1ab4127285d2aac2a9ee |
| 19 | PKG_TARGETS:=bin |
| 20 | |
| 21 | include $(INCLUDE_DIR)/package.mk |
| 22 | |
| 23 | define Package/uboot-ifxmips |
| 24 | SECTION:=boot |
| 25 | CATEGORY:=Boot Loaders |
| 26 | DEPENDS:=@TARGET_ifxmips @BROKEN |
| 27 | TITLE:=U-Boot for Infineon MIPS boards |
| 28 | URL:=http://www.denx.de/wiki/U-Boot |
| 29 | MENU:=1 |
| 30 | endef |
| 31 | |
| 32 | define Build/Prepare |
| 33 | $(call Build/Prepare/Default) |
| 34 | cp -r $(CP_OPTS) ./files/* $(PKG_BUILD_DIR) |
| 35 | find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf |
| 36 | endef |
| 37 | |
| 38 | define Package/uboot-ifxmips/config |
| 39 | source "$(SOURCE)/Config.in" |
| 40 | endef |
| 41 | |
| 42 | UBOOT_CONFIG:=danube |
| 43 | |
| 44 | UBOOT_MAKE_OPTS:=\ |
| 45 | CROSS_COMPILE=$(TARGET_CROSS) \ |
| 46 | CROSS_COMPILE_UCLIBC=1 \ |
| 47 | COMPRESS=lzma \ |
| 48 | PLATFORM_CPU=mips32r2 \ |
| 49 | UBOOT_RAM_TEXT_BASE=0xA0400000 |
| 50 | |
| 51 | A800_FIX:= |
| 52 | ifeq ($(CONFIG_IFXMIPS_UBOOT_A800),y) |
| 53 | A800_FIX += -DA800_SWITCH |
| 54 | endif |
| 55 | |
| 56 | define Build/Configure |
| 57 | $(MAKE) -s -C $(PKG_BUILD_DIR) \ |
| 58 | $(UBOOT_MAKE_OPTS) \ |
| 59 | $(UBOOT_CONFIG)_config |
| 60 | endef |
| 61 | |
| 62 | define Build/Compile |
| 63 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
| 64 | $(UBOOT_MAKE_OPTS) \ |
| 65 | OWRT_FLAGS="-DTEXT_BASE=0xa0400000 ${A800_FIX}" \ |
| 66 | ifx_all |
| 67 | $(CP) $(PKG_BUILD_DIR)/u-boot.srec $(PKG_BUILD_DIR)/asc.srec |
| 68 | $(PKG_BUILD_DIR)/gct \ |
| 69 | $(PKG_BUILD_DIR)/danube_ref_ddr166.conf \ |
| 70 | $(PKG_BUILD_DIR)/asc.srec \ |
| 71 | $(PKG_BUILD_DIR)/u-boot.asc |
| 72 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
| 73 | $(UBOOT_MAKE_OPTS) \ |
| 74 | OWRT_FLAGS="-DDANUBE_BOOT_FROM_EBU=1 -DTEXT_BASE=0xB0000000 ${A800_FIX}" \ |
| 75 | clean ifx_all |
| 76 | endef |
| 77 | |
| 78 | define Package/uboot-ifxmips/install |
| 79 | mkdir -p $(1) |
| 80 | dd if=$(PKG_BUILD_DIR)/u-boot.ifx of=$(1)/u-boot.ifx bs=64k conv=sync |
| 81 | $(CP) $(PKG_BUILD_DIR)/u-boot.asc $(1) |
| 82 | endef |
| 83 | |
| 84 | $(eval $(call BuildPackage,uboot-ifxmips)) |
| 85 | |