fix button-hotplug build on kernel versions where BIT_MASK is not defined (< 2.6.24)
[openwrt/svn-archive/archive.git] / package / uboot-ifxmips / Makefile
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:=1
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_CAT:=bzcat
20 PKG_TARGETS:=bin
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/uboot-ifxmips
25 SECTION:=boot
26 CATEGORY:=Boot Loaders
27 DEPENDS:=@TARGET_ifxmips
28 TITLE:=U-Boot for Infineon MIPS boards
29 URL:=http://www.denx.de/wiki/UBoot/WebHome
30 endef
31
32 define Build/Prepare
33 $(call Build/Prepare/Default)
34 cp -r ./files/* $(PKG_BUILD_DIR)
35 find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
36 endef
37
38 define Build/Compile
39 cd $(PKG_BUILD_DIR);chmod a+x build_danube.sh;./build_danube.sh
40 endef
41
42 define Package/uboot-ifxmips/install
43 mkdir -p $(1)
44 dd if=$(PKG_BUILD_DIR)/u-boot.ifx of=$(1)/u-boot.ifx bs=64k conv=sync
45 endef
46
47 $(eval $(call BuildPackage,uboot-ifxmips))