diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-06 10:36:35 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-06 10:36:35 +0000 |
commit | f03072225ee57c5159d24edcac5b6f1c3b976167 (patch) | |
tree | 24ac8762654f48f6d62bac5d982c0e47c9097e55 /package/uboot-lantiq/Makefile | |
parent | 299fdf65d5c09a335992b4ac216b7c86bcb394c8 (diff) |
fix lantiq uboot to build lzma compressed bootloaders for eval kits
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27487 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-lantiq/Makefile')
-rw-r--r-- | package/uboot-lantiq/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/uboot-lantiq/Makefile b/package/uboot-lantiq/Makefile index 83fa6639bd..f13395f684 100644 --- a/package/uboot-lantiq/Makefile +++ b/package/uboot-lantiq/Makefile @@ -112,15 +112,15 @@ endef define Package/uboot-lantiq-$(BUILD_VARIANT)/install mkdir -p $(1) -ifneq ($(findstring flash,$(BUILD_VARIANT)),) +ifneq ($(findstring ramboot,$(BUILD_VARIANT)),) dd \ - if=$(PKG_BUILD_DIR)/$(BUILD_VARIANT)/u-boot-bootstrap.bin \ - of=$(1)/u-boot-bootstrap.bin \ + if=$(PKG_BUILD_DIR)/$(BUILD_VARIANT)/u-boot.bin \ + of=$(1)/u-boot.bin \ bs=64k conv=sync else dd \ - if=$(PKG_BUILD_DIR)/$(BUILD_VARIANT)/u-boot.bin \ - of=$(1)/u-boot.bin \ + if=$(PKG_BUILD_DIR)/$(BUILD_VARIANT)/u-boot-bootstrap.bin \ + of=$(1)/u-boot-bootstrap.bin \ bs=64k conv=sync endif ifneq ($(findstring ramboot,$(BUILD_VARIANT)),) |