2 # Copyright (C) 2007 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
11 cp
$(LINUX_DIR
)/arch
/avr32
/boot
/images
/uImage
$(KDIR
)/uImage
14 define Image
/BuildKernel
15 cp
$(KDIR
)/uImage
$(BIN_DIR
)/openwrt-
$(BOARD
)-$(KERNEL
)-uImage
19 $(call Image
/Build
/$(1),$(1))
22 define Image
/Build
/squashfs
23 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
25 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
26 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
27 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(KERNEL
)-$(1).img
30 define Image
/Build
/jffs2-64k
32 dd if
=$(KDIR
)/uImage bs
=1024k conv
=sync
; \
33 dd if
=$(KDIR
)/root.
$(1) bs
=64k conv
=sync
; \
34 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(KERNEL
)-$(1).img
37 $(eval
$(call BuildImage
))