u-boot: prefer mirror2.openwrt.org over ftp.denx.de - the denx ftp is slow and unreliable
[openwrt/staging/wigyori.git] / package / boot / uboot-lantiq / Makefile
1 #
2 # Copyright (C) 2012-2013 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
10 PKG_NAME:=u-boot
11 PKG_VERSION:=2013.01
12 PKG_RELEASE:=1
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:= \
17 http://mirror2.openwrt.org/sources \
18 ftp://ftp.denx.de/pub/u-boot
19 PKG_MD5SUM:=e58a8a7f78972248190d83de0dc362ce
20 PKG_TARGETS:=bin
21
22 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
23
24 include $(INCLUDE_DIR)/package.mk
25
26 define uboot/Default
27 TITLE:=
28 SOC:=
29 DDR_SETTINGS:=
30 IMAGE:=
31 endef
32
33 define uboot/arv4519pw_ram
34 TITLE:=U-Boot for Arcadyan arv4519pw (RAM)
35 SOC:=danube
36 DDR_SETTINGS:=board/arcadyan/arv4519pw/ddr_settings.h
37 endef
38
39 define uboot/arv4519pw_nor
40 TITLE:=U-Boot for Arcadyan arv4519pw (NOR)
41 SOC:=danube
42 endef
43
44 define uboot/arv7518pw_ram
45 TITLE:=U-Boot for Arcadyan arv7518pw (RAM)
46 SOC:=danube
47 DDR_SETTINGS:=board/arcadyan/arv7518pw/ddr_settings.h
48 endef
49
50 define uboot/arv7518pw_nor
51 TITLE:=U-Boot for Arcadyan arv7518pw (NOR)
52 SOC:=danube
53 endef
54
55 define uboot/gigasx76x_ram
56 TITLE:=U-Boot for Siemens Gigaset sx76x (RAM)
57 SOC:=danube
58 DDR_SETTINGS:=board/gigaset/sx76x/ddr_settings.h
59 endef
60
61 define uboot/gigasx76x_nor
62 TITLE:=U-Boot for Siemens Gigaset sx76x (NOR)
63 SOC:=danube
64 endef
65
66 UBOOTS:= \
67 arv4519pw_ram arv4519pw_nor \
68 arv7518pw_ram arv7518pw_nor \
69 gigasx76x_ram gigasx76x_nor
70
71 define Package/uboot/template
72 define Package/uboot-lantiq-$(1)
73 SECTION:=boot
74 CATEGORY:=Boot Loaders
75 DEPENDS:=@TARGET_lantiq_xway
76 TITLE:=$(2)
77 URL:=http://www.denx.de/wiki/U-Boot
78 VARIANT:=$(1)
79 MAINTAINER:=Luka Perkov <luka@openwrt.org>
80 endef
81 endef
82
83 define BuildUBootPackage
84 $(eval $(uboot/Default))
85 $(eval $(uboot/$(1)))
86 $(call Package/uboot/template,$(1),$(TITLE))
87 endef
88
89 define Build/Configure
90 $(MAKE) -C $(PKG_BUILD_DIR) $(BUILD_VARIANT)_config
91 endef
92
93 define Build/Compile
94 $(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE=$(TARGET_CROSS)
95 endef
96
97 define Package/uboot/install/default
98 $(CP) \
99 $(PKG_BUILD_DIR)/$(2) \
100 $(BIN_DIR)/uboot-$(BOARD)-$(1)/openwrt-$(BOARD)-$(1)-u-boot.img
101 endef
102
103 define Package/uboot/install/uart
104 awk -f $(PKG_BUILD_DIR)/tools/lantiq_ram_init_uart.awk \
105 -v soc=$(2) $(PKG_BUILD_DIR)/$(3) \
106 > $(PKG_BUILD_DIR)/ddr_settings
107 perl $(PKG_BUILD_DIR)/tools/gct.pl \
108 $(PKG_BUILD_DIR)/ddr_settings $(PKG_BUILD_DIR)/u-boot.srec \
109 $(BIN_DIR)/uboot-$(BOARD)-$(1)/openwrt-$(BOARD)-$(1)-u-boot.asc
110 endef
111
112 define Package/uboot/install/template
113 define Package/uboot-lantiq-$(1)/install
114 $(call Package/uboot/install/default,$(1),$(if $(IMAGE),$(IMAGE),u-boot.bin))
115 $(if $(DDR_SETTINGS), \
116 $(call Package/uboot/install/uart,$(1),$(SOC),$(DDR_SETTINGS)) \
117 )
118 endef
119 endef
120
121 $(foreach u,$(UBOOTS), \
122 $(eval $(call BuildUBootPackage,$(u))) \
123 $(eval $(call Package/uboot/install/template,$(u))) \
124 $(eval $(call BuildPackage,uboot-lantiq-$(u))) \
125 )