2 # Copyright (C) 2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
9 include $(INCLUDE_DIR
)/kernel.mk
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
21 include $(INCLUDE_DIR
)/package.mk
23 define Package
/uboot-ifxmips
25 CATEGORY
:=Boot Loaders
26 DEPENDS
:=@TARGET_ifxmips
27 TITLE
:=U-Boot for Infineon MIPS boards
28 URL
:=http
://www.denx.de
/wiki
/UBoot
/WebHome
32 $(call Build
/Prepare
/Default
)
33 cp
-r
$(CP_OPTS
) .
/files
/* $(PKG_BUILD_DIR
)
34 find
$(PKG_BUILD_DIR
) -name .svn |
$(XARGS
) rm -rf
40 CROSS_COMPILE
=$(TARGET_CROSS
) \
41 CROSS_COMPILE_UCLIBC
=1 \
43 PLATFORM_CPU
=mips32r2 \
44 UBOOT_RAM_TEXT_BASE
=0xA0400000
46 define Build
/Configure
47 $(MAKE
) -s
-C
$(PKG_BUILD_DIR
) \
49 $(UBOOT_CONFIG
)_config
53 $(MAKE
) -s
-C
$(PKG_BUILD_DIR
) \
56 if
[ `stat -c%s $(PKG_BUILD_DIR)/u-boot.ifx` -gt
65536 ] ;\
58 echo
"u-boot.ifx file has exceeded 64MB in size."; exit
1; \
62 define Package
/uboot-ifxmips
/install
64 dd if
=$(PKG_BUILD_DIR
)/u-boot.ifx of
=$(1)/u-boot.ifx bs
=64k conv
=sync
67 $(eval
$(call BuildPackage
,uboot-ifxmips
))