diff options
Diffstat (limited to 'target/linux/avr32/image')
-rw-r--r-- | target/linux/avr32/image/Config.in | 6 | ||||
-rw-r--r-- | target/linux/avr32/image/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/target/linux/avr32/image/Config.in b/target/linux/avr32/image/Config.in index bc5469e7a..7448a0f21 100644 --- a/target/linux/avr32/image/Config.in +++ b/target/linux/avr32/image/Config.in @@ -1,12 +1,12 @@ config AVR32_UBOOT bool "Build U-Boot bootloader" - depends TARGET_avr32 + depends on TARGET_avr32 default n config AVR32_UBOOT_TARGET string "U-Boot target board" - depends TARGET_avr32 - depends AVR32_UBOOT + depends on TARGET_avr32 + depends on AVR32_UBOOT default "atngw100" help For all supported boards there are ready-to-use default diff --git a/target/linux/avr32/image/Makefile b/target/linux/avr32/image/Makefile index 595a5d9fc..11387b14e 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 |