diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-03-12 13:28:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-03-12 13:28:16 +0000 |
commit | 4f7184970b52625053c5bc415dd8da757f14649d (patch) | |
tree | ecc72d85f16b05f658f544232d37c770b66ac226 /target/linux/avr32 | |
parent | 389717fe060be9970f34b28fbdd901f9fd5dc2d0 (diff) | |
download | upstream-4f7184970b52625053c5bc415dd8da757f14649d.tar.gz upstream-4f7184970b52625053c5bc415dd8da757f14649d.tar.bz2 upstream-4f7184970b52625053c5bc415dd8da757f14649d.zip |
avr32: built the firmware images from the lzma compressed uImage
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35978 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/avr32')
-rw-r--r-- | target/linux/avr32/image/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/avr32/image/Makefile b/target/linux/avr32/image/Makefile index 595a5d9fcf..11387b14ea 100644 --- a/target/linux/avr32/image/Makefile +++ b/target/linux/avr32/image/Makefile @@ -40,14 +40,14 @@ endef define Image/Build/squashfs $(call prepare_generic_squashfs,$(KDIR)/root.squashfs) ( \ - dd if=$(KDIR)/uImage bs=1024k conv=sync; \ + dd if=$(KDIR)/uImage-lzma bs=1024k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ ) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img endef define Image/Build/jffs2-64k ( \ - dd if=$(KDIR)/uImage bs=1024k conv=sync; \ + dd if=$(KDIR)/uImage-lzma bs=1024k conv=sync; \ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \ ) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img endef |