X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/2f214fab5e6d2f06923e80dbe7ef363909f9cf37..c3f5fad3fca88258a033f26262e979a77d8aea52:/target/linux/avr32/image/Makefile?ds=sidebyside diff --git a/target/linux/avr32/image/Makefile b/target/linux/avr32/image/Makefile index cbaf07dfb..692c325b5 100644 --- a/target/linux/avr32/image/Makefile +++ b/target/linux/avr32/image/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2007 OpenWrt.org +# +# Copyright (C) 2007-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,13 +8,15 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -define Build/Clean +ifneq ($(CONFIG_AVR32_UBOOT),) + define Build/Clean $(MAKE) -C u-boot clean -endef + endef -define Build/Compile + define Build/Compile $(MAKE) -C u-boot compile -endef + endef +endif define Image/Prepare cp $(LINUX_DIR)/arch/avr32/boot/images/uImage $(KDIR)/uImage @@ -22,6 +24,14 @@ endef define Image/BuildKernel cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage + + $(STAGING_DIR_HOST)/bin/lzma e $(LINUX_DIR)/arch/avr32/boot/images/vmlinux.bin $(KDIR)/vmlinux.lzma + mkimage -A avr32 -O linux -T kernel -a 0x10000000 -C lzma \ + -e 0x90000000 \ + -n 'OpenWrt Linux-$(LINUX_VERSION)' \ + -d $(KDIR)/vmlinux.lzma $(KDIR)/uImage-lzma + + cp $(KDIR)/uImage-lzma $(BIN_DIR)/openwrt-$(BOARD)-uImage-lzma endef define Image/Build