| 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:=2012.10-rc2 |
| 13 | PKG_RELEASE:=1 |
| 14 | |
| 15 | PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(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:=451c07271940016cec6f5ad8a155263b |
| 19 | PKG_TARGETS:=bin |
| 20 | |
| 21 | include $(INCLUDE_DIR)/package.mk |
| 22 | |
| 23 | define uboot/Default |
| 24 | TITLE:= |
| 25 | CONFIG:= |
| 26 | IMAGE:= |
| 27 | endef |
| 28 | |
| 29 | define uboot/qi_lb60 |
| 30 | TITLE:=U-boot for the qi_lb60 board |
| 31 | endef |
| 32 | |
| 33 | UBOOTS:=qi_lb60 |
| 34 | |
| 35 | define Package/uboot/template |
| 36 | define Package/uboot-xburst-$(1) |
| 37 | SECTION:=boot |
| 38 | CATEGORY:=Boot Loaders |
| 39 | DEPENDS:=@TARGET_xburst |
| 40 | TITLE:=$(2) |
| 41 | URL:=http://www.denx.de/wiki/UBoot/WebHome |
| 42 | VARIANT:=$(1) |
| 43 | endef |
| 44 | endef |
| 45 | |
| 46 | define BuildUbootPackage |
| 47 | $(eval $(uboot/Default)) |
| 48 | $(eval $(uboot/$(1))) |
| 49 | $(call Package/uboot/template,$(1),$(TITLE)) |
| 50 | endef |
| 51 | |
| 52 | |
| 53 | ifdef BUILD_VARIANT |
| 54 | $(eval $(call uboot/$(BUILD_VARIANT))) |
| 55 | UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT)) |
| 56 | UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_BARIANT)-u-boot.bin) |
| 57 | endif |
| 58 | |
| 59 | define Build/Configure |
| 60 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
| 61 | $(UBOOT_CONFIG)_config |
| 62 | endef |
| 63 | |
| 64 | define Build/Compile |
| 65 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
| 66 | CROSS_COMPILE=$(TARGET_CROSS) |
| 67 | $(MAKE) -C $(PKG_BUILD_DIR) \ |
| 68 | CROSS_COMPILE=$(TARGET_CROSS) spl/u-boot-spl.bin |
| 69 | dd if=$(PKG_BUILD_DIR)/spl/u-boot-spl.bin of=$(PKG_BUILD_DIR)/u-boot-spl-tmp.bin conv=sync bs=8192 count=1 |
| 70 | dd if=$(PKG_BUILD_DIR)/spl/u-boot-spl.bin of=$(PKG_BUILD_DIR)/u-boot-spl-tmp.bin conv=sync,notrunc oflag=append bs=8192 count=1 |
| 71 | tr '\0' '\377' < /dev/zero | dd of=$(PKG_BUILD_DIR)/u-boot-spl-tmp.bin conv=sync,notrunc oflag=append bs=16384 count=1 |
| 72 | cat $(PKG_BUILD_DIR)/u-boot-spl-tmp.bin $(PKG_BUILD_DIR)/u-boot.bin > $(PKG_BUILD_DIR)/u-boot-nand.bin |
| 73 | endef |
| 74 | |
| 75 | define Package/uboot/install/template |
| 76 | define Package/uboot-xburst-$(1)/install |
| 77 | $(CP) $(PKG_BUILD_DIR)/u-boot-nand.bin $(BIN_DIR)/$(2) |
| 78 | rmdir $$(1) |
| 79 | endef |
| 80 | endef |
| 81 | |
| 82 | $(foreach u,$(UBOOTS), \ |
| 83 | $(eval $(call Package/uboot/install/template,$(u),openwrt-$(BOARD)-$(u)-u-boot.bin)) \ |
| 84 | ) |
| 85 | |
| 86 | $(foreach u,$(UBOOTS), \ |
| 87 | $(eval $(call BuildUbootPackage,$(u))) \ |
| 88 | $(eval $(call BuildPackage,uboot-xburst-$(u))) \ |
| 89 | ) |
| 90 | |