2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR
)/rules.mk
9 include $(INCLUDE_DIR
)/image.mk
12 $(MAKE
) -C u-boot
clean
16 $(MAKE
) -C u-boot compile
20 cp
$(LINUX_DIR
)/arch
/avr32
/boot
/images
/uImage
$(KDIR
)/uImage
23 define Image
/BuildKernel
24 cp
$(KDIR
)/uImage
$(BIN_DIR
)/openwrt-
$(BOARD
)-uImage
26 $(STAGING_DIR_HOST
)/bin
/lzma e
$(KDIR
)/vmlinux
$(KDIR
)/vmlinux.lzma
27 mkimage
-A avr32
-O linux
-T kernel
-a
0x10000000 -C lzma \
29 -n
'OpenWrt Linux-$(LINUX_VERSION)' \
30 -d
$(KDIR
)/vmlinux.lzma
$(KDIR
)/uImage-lzma
32 cp
$(KDIR
)/uImage-lzma
$(BIN_DIR
)/openwrt-
$(BOARD
)-uImage-lzma
36 $(call Image
/Build
/$(1),$(1))
39 define Image
/Build
/squashfs
40 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
42 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
43 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
44 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(1).img
47 define Image
/Build
/jffs2-64k
49 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
50 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
51 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(1).img
54 $(eval
$(call BuildImage
))