diff options
author | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-03-30 13:49:42 +0000 |
---|---|---|
committer | Ralph Hempel <ralph.hempel@lantiq.com> | 2010-03-30 13:49:42 +0000 |
commit | 360c8146b4ab84e65f170bf045f718a066e9d831 (patch) | |
tree | e4fc6fd65871467272026ddeb022310bb3ac1de7 /package/uboot-lantiq/Makefile | |
parent | 6f4052abe0d2259c641ed42c230cbb534ef7a868 (diff) | |
download | upstream-360c8146b4ab84e65f170bf045f718a066e9d831.tar.gz upstream-360c8146b4ab84e65f170bf045f718a066e9d831.tar.bz2 upstream-360c8146b4ab84e65f170bf045f718a066e9d831.zip |
adding httpd - failsafe patch flash write routine is not functional yet add configuration (board & dram)
SVN-Revision: 20603
Diffstat (limited to 'package/uboot-lantiq/Makefile')
-rw-r--r-- | package/uboot-lantiq/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/package/uboot-lantiq/Makefile b/package/uboot-lantiq/Makefile index 3ffe8846ee..48f4683161 100644 --- a/package/uboot-lantiq/Makefile +++ b/package/uboot-lantiq/Makefile @@ -35,12 +35,20 @@ define Build/Prepare find $(PKG_BUILD_DIR) -name .svn | $(XARGS) rm -rf endef -UBOOT_CONFIG:=easy50712_DDR166M +UBOOT_CONFIG:=$(call qstrip,$(CONFIG_UBOOT_CONFIG)) +UBOOT_DDR_CONFIG:=$(call qstrip,$(CONFIG_UBOOT_DDR_CONFIG)) + UBOOT_MAKE_OPTS:= \ CROSS_COMPILE=$(TARGET_CROSS) \ ENDIANNESS= \ V=1 +define Package/uboot-lantiq/config + menu "configuration" + source "$(SOURCE)/Config.in" + endmenu +endef + define Build/Configure/Target $(MAKE) -s -C $(PKG_BUILD_DIR) \ $(UBOOT_MAKE_OPTS) \ @@ -50,7 +58,9 @@ endef define Build/Configure $(call Build/Configure/Target,$(UBOOT_CONFIG)) +ifeq ($(CONFIG_UBOOT_RAMBOOT),y) $(call Build/Configure/Target,$(UBOOT_CONFIG)_ramboot) +endif endef define Build/Compile/Target @@ -62,7 +72,9 @@ endef define Build/Compile $(call Build/Compile/Target,$(UBOOT_CONFIG)) +ifeq ($(CONFIG_UBOOT_RAMBOOT),y) $(call Build/Compile/Target,$(UBOOT_CONFIG)_ramboot) +endif endef define Package/uboot-lantiq/install @@ -71,12 +83,14 @@ define Package/uboot-lantiq/install if=$(PKG_BUILD_DIR)/$(UBOOT_CONFIG)/u-boot.bin \ of=$(1)/$(UBOOT_CONFIG)/u-boot.bin \ bs=64k conv=sync +ifeq ($(CONFIG_UBOOT_RAMBOOT),y) if [ -e $(UBOOT_CONFIG).conf ]; then \ perl ./gct \ - $(UBOOT_CONFIG).conf \ + $(UBOOT_DDR_CONFIG) \ $(PKG_BUILD_DIR)/$(UBOOT_CONFIG)_ramboot/u-boot.srec \ $(1)/$(UBOOT_CONFIG)/u-boot.asc; \ fi +endif endef $(eval $(call BuildPackage,uboot-lantiq)) |