2 # Copyright (C) 2007-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/image.mk
10 ifneq ($(CONFIG_AVR32_UBOOT
),)
12 $(MAKE
) -C u-boot
clean
16 $(MAKE
) -C u-boot compile
21 cp
$(LINUX_DIR
)/arch
/avr32
/boot
/images
/uImage
$(KDIR
)/uImage
24 define Image
/BuildKernel
25 cp
$(KDIR
)/uImage
$(BIN_DIR
)/$(IMG_PREFIX
)-uImage
27 $(STAGING_DIR_HOST
)/bin
/lzma e
$(LINUX_DIR
)/arch
/avr32
/boot
/images
/vmlinux.bin
$(KDIR
)/vmlinux.lzma
28 mkimage
-A avr32
-O linux
-T kernel
-a
0x10000000 -C lzma \
30 -n
'OpenWrt Linux-$(LINUX_VERSION)' \
31 -d
$(KDIR
)/vmlinux.lzma
$(KDIR
)/uImage-lzma
33 cp
$(KDIR
)/uImage-lzma
$(BIN_DIR
)/$(IMG_PREFIX
)-uImage-lzma
37 $(call Image
/Build
/$(1),$(1))
40 define Image
/Build
/squashfs
41 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
43 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
44 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
45 ) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img
48 define Image
/Build
/jffs2-64k
50 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
51 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
52 ) > $(BIN_DIR
)/$(IMG_PREFIX
)-$(1).img
55 $(eval
$(call BuildImage
))