| 1 | # |
| 2 | # Copyright (C) 2010 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:=2009.11.1 |
| 13 | PKG_MD5SUM:=6086421c9e2f3a0d0dbc5f706b551dbc |
| 14 | PKG_RELEASE:=1 |
| 15 | |
| 16 | PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) |
| 17 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 |
| 18 | PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot |
| 19 | PKG_TARGETS:=bin |
| 20 | |
| 21 | include $(INCLUDE_DIR)/package.mk |
| 22 | |
| 23 | ifeq ($(DUMP),) |
| 24 | STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_UBOOT_' $(TOPDIR)/.config | md5s) |
| 25 | endif |
| 26 | |
| 27 | define Package/uboot-lantiq |
| 28 | SECTION:=boot |
| 29 | CATEGORY:=Boot Loaders |
| 30 | DEPENDS:=@TARGET_ifxmips |
| 31 | TITLE:=U-Boot for Lantiq reference boards |
| 32 | URL:=http://www.denx.de/wiki/U-Boot |
| 33 | MENU:=1 |
| 34 | endef |
| 35 | |
| 36 | define Build/Prepare |
| 37 | $(PKG_UNPACK) |
| 38 | cp -r $(CP_OPTS) $(FILES_DIR)/* $(PKG_BUILD_DIR)/ |
| 39 | $(Build/Patch) |
| 40 | find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf |
| 41 | endef |
| 42 | |
| 43 | UBOOT_TARGET:=$(call qstrip,$(CONFIG_UBOOT_TARGET)) |
| 44 | UBOOT_RAMBOOT_DDR_CONFIG:=$(call qstrip,$(CONFIG_UBOOT_RAMBOOT_DDR_CONFIG)) |
| 45 | |
| 46 | UBOOT_MAKE_OPTS:= \ |
| 47 | CROSS_COMPILE=$(TARGET_CROSS) \ |
| 48 | ENDIANNESS= \ |
| 49 | V=1 |
| 50 | |
| 51 | define Package/uboot-lantiq/config |
| 52 | source "$(SOURCE)/Config.in" |
| 53 | endef |
| 54 | |
| 55 | define Build/Configure/Target |
| 56 | $(MAKE) -s -C $(PKG_BUILD_DIR) \ |
| 57 | $(UBOOT_MAKE_OPTS) \ |
| 58 | O=$(PKG_BUILD_DIR)/$(1) \ |
| 59 | $(1)_config |
| 60 | endef |
| 61 | |
| 62 | define Build/Configure |
| 63 | $(call Build/Configure/Target,$(UBOOT_TARGET)) |
| 64 | ifeq ($(CONFIG_UBOOT_RAMBOOT),y) |
| 65 | $(call Build/Configure/Target,$(UBOOT_TARGET)_ramboot) |
| 66 | endif |
| 67 | endef |
| 68 | |
| 69 | define Build/Compile/Target |
| 70 | $(MAKE) -s -C $(PKG_BUILD_DIR) \ |
| 71 | $(UBOOT_MAKE_OPTS) \ |
| 72 | O=$(PKG_BUILD_DIR)/$(1) \ |
| 73 | all |
| 74 | endef |
| 75 | |
| 76 | define Build/Compile |
| 77 | $(call Build/Compile/Target,$(UBOOT_TARGET)) |
| 78 | ifeq ($(CONFIG_UBOOT_RAMBOOT),y) |
| 79 | $(call Build/Compile/Target,$(UBOOT_TARGET)_ramboot) |
| 80 | endif |
| 81 | endef |
| 82 | |
| 83 | define Package/uboot-lantiq/install |
| 84 | mkdir -p $(1)/$(UBOOT_TARGET) |
| 85 | dd \ |
| 86 | if=$(PKG_BUILD_DIR)/$(UBOOT_TARGET)/u-boot.bin \ |
| 87 | of=$(1)/$(UBOOT_TARGET)/u-boot.bin \ |
| 88 | bs=64k conv=sync |
| 89 | ifeq ($(CONFIG_UBOOT_RAMBOOT),y) |
| 90 | if [ -e $(UBOOT_RAMBOOT_DDR_CONFIG) ]; then \ |
| 91 | perl ./gct \ |
| 92 | $(UBOOT_RAMBOOT_DDR_CONFIG) \ |
| 93 | $(PKG_BUILD_DIR)/$(UBOOT_TARGET)_ramboot/u-boot.srec \ |
| 94 | $(1)/$(UBOOT_TARGET)/u-boot.asc; \ |
| 95 | fi |
| 96 | endif |
| 97 | endef |
| 98 | |
| 99 | $(eval $(call BuildPackage,uboot-lantiq)) |
| 100 | |