move ifxmips uboot to package/

SVN-Revision: 11601
This commit is contained in:
Felix Fietkau 2008-06-28 19:53:41 +00:00
parent f5bdb5432f
commit 783bb0e81c
82 changed files with 18 additions and 13 deletions

View file

@ -17,18 +17,31 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
PKG_MD5SUM:=579707c8ecbf1ab4127285d2aac2a9ee PKG_MD5SUM:=579707c8ecbf1ab4127285d2aac2a9ee
PKG_CAT:=bzcat PKG_CAT:=bzcat
PKG_TARGETS:=bin
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
define Build/Compile define Package/uboot-ifxmips
SECTION:=boot
CATEGORY:=Boot Loaders
DEPENDS:=@TARGET_ifxmips
TITLE:=U-Boot for Infineon MIPS boards
URL:=http://www.denx.de/wiki/UBoot/WebHome
endef
define Build/Prepare
$(call Build/Prepare/Default)
cp -r ./files/* $(PKG_BUILD_DIR) cp -r ./files/* $(PKG_BUILD_DIR)
find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
endef
define Build/Compile
cd $(PKG_BUILD_DIR);chmod a+x build_danube.sh;./build_danube.sh cd $(PKG_BUILD_DIR);chmod a+x build_danube.sh;./build_danube.sh
endef endef
define Build/InstallDev define Package/uboot-ifxmips/install
mkdir -p $(BIN_DIR) mkdir -p $(1)
dd if=$(PKG_BUILD_DIR)/u-boot.ifx of=$(BIN_DIR)/u-boot.ifx bs=64k conv=sync dd if=$(PKG_BUILD_DIR)/u-boot.ifx of=$(1)/u-boot.ifx bs=64k conv=sync
endef endef
$(eval $(call Build/DefaultTargets)) $(eval $(call BuildPackage,uboot-ifxmips))

View file

@ -7,14 +7,6 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk include $(INCLUDE_DIR)/image.mk
define Build/Clean
$(MAKE) -C u-boot clean
endef
define Build/Compile
$(MAKE) -C u-boot compile
endef
define Image/BuildKernel define Image/BuildKernel
$(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.lzma $(STAGING_DIR_HOST)/bin/lzma e $(KDIR)/vmlinux $(KDIR)/vmlinux.lzma
mkimage -A mips -O linux -T kernel -a 0x80002000 -C lzma -e \ mkimage -A mips -O linux -T kernel -a 0x80002000 -C lzma -e \