diff options
author | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2010-10-21 08:54:36 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr> | 2010-10-21 08:54:36 +0000 |
commit | 771ce7893234d22ee69a396b11e8390b1975a5f4 (patch) | |
tree | 047eb8087cda234b6b3ca7e7b01100b09c01ade9 | |
parent | 1ff982fcd9d98d1f92319eb9609c80730e0bbbbf (diff) | |
download | master-187ad058-771ce7893234d22ee69a396b11e8390b1975a5f4.tar.gz master-187ad058-771ce7893234d22ee69a396b11e8390b1975a5f4.tar.bz2 master-187ad058-771ce7893234d22ee69a396b11e8390b1975a5f4.zip |
[package] uboot-{kirkwood,xburst}: Fix typo in U-Boot image name, thanks framer99 (#8112)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23567 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/uboot-kirkwood/Makefile | 2 | ||||
-rw-r--r-- | package/uboot-xburst/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/uboot-kirkwood/Makefile b/package/uboot-kirkwood/Makefile index 8724aef6d9..cdf35a4caa 100644 --- a/package/uboot-kirkwood/Makefile +++ b/package/uboot-kirkwood/Makefile @@ -61,7 +61,7 @@ endef ifdef BUILD_VARIANT $(eval $(call uboot/$(BUILD_VARIANT))) UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT)) -UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_BARIANT)-u-boot.bin) +UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin) endif define Build/Prepare diff --git a/package/uboot-xburst/Makefile b/package/uboot-xburst/Makefile index 893fbf5310..1d340fd5e1 100644 --- a/package/uboot-xburst/Makefile +++ b/package/uboot-xburst/Makefile @@ -66,7 +66,7 @@ endef ifdef BUILD_VARIANT $(eval $(call uboot/$(BUILD_VARIANT))) UBOOT_CONFIG:=$(if $(CONFIG),$(CONFIG),$(BUILD_VARIANT)) -UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_BARIANT)-u-boot.bin) +UBOOT_IMAGE:=$(if $(IMAGE),$(IMAGE),openwrt-$(BOARD)-$(BUILD_VARIANT)-u-boot.bin) endif define Build/Prepare |