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
13 cp
$(LINUX_DIR
)/arch
/powerpc
/boot
/cuImage.taishan
$(KDIR
)/uImage
16 define Image
/BuildKernel
17 cp
$(KDIR
)/uImage
$(BIN_DIR
)/openwrt-
$(BOARD
)-uImage
21 $(call Image
/Build
/$(1),$(1))
24 define Image
/Build
/jffs2-256k
26 dd if
=$(KDIR
)/uImage bs
=2048k conv
=sync
; \
27 dd if
=$(KDIR
)/root.
$(1) bs
=256k conv
=sync
; \
28 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-jffs2.img
31 define Image
/Build
/squashfs
32 $(call prepare_generic_squashfs
,$(KDIR
)/root.squashfs
)
34 dd if
=$(KDIR
)/uImage bs
=2048k conv
=sync
; \
35 dd if
=$(KDIR
)/root.
$(1) bs
=256k conv
=sync
; \
36 ) > $(BIN_DIR
)/openwrt-
$(BOARD
)-$(1).img
39 $(eval
$(call BuildImage
))