summaryrefslogtreecommitdiffstats
path: root/package/uboot-lantiq/Makefile
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-28 22:40:32 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-03-28 22:40:32 +0000
commitf679e4f7e64b1f9817e9f8c4c10946ac16f6d06f (patch)
treeaa64a4eb197b91873d662ebd1b617b1a32bb3cc1 /package/uboot-lantiq/Makefile
parent678d38e811c0657540ec22bd00b457ae8ed841d7 (diff)
add uboot-lantiq (based on a patch contributed by Lantiq)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20561 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-lantiq/Makefile')
-rw-r--r--package/uboot-lantiq/Makefile82
1 files changed, 82 insertions, 0 deletions
diff --git a/package/uboot-lantiq/Makefile b/package/uboot-lantiq/Makefile
new file mode 100644
index 000000000..fb9b668a3
--- /dev/null
+++ b/package/uboot-lantiq/Makefile
@@ -0,0 +1,82 @@
+#
+# Copyright (C) 2010 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+include $(INCLUDE_DIR)/kernel.mk
+
+PKG_NAME:=u-boot
+PKG_VERSION:=2009.11.1
+PKG_MD5SUM:=6086421c9e2f3a0d0dbc5f706b551dbc
+PKG_RELEASE:=1
+
+PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=ftp://ftp.denx.de/pub/u-boot
+PKG_TARGETS:=bin
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/uboot-lantiq
+ SECTION:=boot
+ CATEGORY:=Boot Loaders
+ DEPENDS:=@TARGET_ifxmips
+ TITLE:=U-Boot for Lantiq reference boards
+ URL:=http://www.denx.de/wiki/UBoot/WebHome
+endef
+
+define Build/Prepare
+ $(PKG_UNPACK)
+ cp -r $(CP_OPTS) $(FILES_DIR)/* $(PKG_BUILD_DIR)/
+ $(Build/Patch)
+ find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf
+endef
+
+UBOOT_CONFIG:=easy50712_DDR166M
+UBOOT_MAKE_OPTS:= \
+ CROSS_COMPILE=$(TARGET_CROSS) \
+ ENDIANNESS= \
+ V=1
+
+define Build/Configure/Target
+ $(MAKE) -s -C $(PKG_BUILD_DIR) \
+ $(UBOOT_MAKE_OPTS) \
+ O=$(PKG_BUILD_DIR)/$(1) \
+ $(1)_config
+endef
+
+define Build/Configure
+ $(call Build/Configure/Target,$(UBOOT_CONFIG))
+ $(call Build/Configure/Target,$(UBOOT_CONFIG)_ramboot)
+endef
+
+define Build/Compile/Target
+ $(MAKE) -s -C $(PKG_BUILD_DIR) \
+ $(UBOOT_MAKE_OPTS) \
+ O=$(PKG_BUILD_DIR)/$(1) \
+ all
+endef
+
+define Build/Compile
+ $(call Build/Compile/Target,$(UBOOT_CONFIG))
+ $(call Build/Compile/Target,$(UBOOT_CONFIG)_ramboot)
+endef
+
+define Package/uboot-lantiq/install
+ mkdir -p $(1)/$(UBOOT_CONFIG)
+ dd \
+ if=$(PKG_BUILD_DIR)/$(UBOOT_CONFIG)/u-boot.bin \
+ of=$(1)/$(UBOOT_CONFIG)/u-boot.bin \
+ bs=64k conv=sync
+ if [ -e $(UBOOT_CONFIG).conf ]; then \
+ perl ./gct \
+ $(UBOOT_CONFIG).conf \
+ $(PKG_BUILD_DIR)/$(UBOOT_CONFIG)_ramboot/u-boot.srec \
+ $(1)/$(UBOOT_CONFIG)/u-boot.asc; \
+ fi
+endef
+
+$(eval $(call BuildPackage,uboot-lantiq))