update to version 2010.3 httpd-failsafe: removed warnings, cleanup html pages httpd...
[openwrt/openwrt.git] / package / uboot-lantiq / Makefile
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
13 PKG_VERSION:=2010.03
14 PKG_MD5SUM:=2bf5ebf497dddc52440b1ea386cc1332
15 PKG_RELEASE:=1
16
17 PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
19 PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
20 PKG_TARGETS:=bin
21
22 include $(INCLUDE_DIR)/package.mk
23
24 ifeq ($(DUMP),)
25 STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_UBOOT_' $(TOPDIR)/.config | md5s)
26 endif
27
28 define Package/uboot-lantiq
29 SECTION:=boot
30 CATEGORY:=Boot Loaders
31 DEPENDS:=@TARGET_ifxmips
32 TITLE:=U-Boot for Lantiq reference boards
33 URL:=http://www.denx.de/wiki/U-Boot
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))