09ff061dba188f0750f3e1a003a31525b7a722e3
[openwrt/openwrt.git] / target / linux / amcc / image / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/image.mk
9
10 JFFS2_BLOCKSIZE=256k
11
12 define Image/Prepare
13 cp $(LINUX_DIR)/arch/ppc/boot/images/uImage $(KDIR)/uImage
14 endef
15
16 define Image/BuildKernel
17 cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-uImage
18 endef
19
20 define Image/Build
21 $(call Image/Build/$(1),$(1))
22 endef
23
24 define Image/Build/jffs2-256k
25 ( \
26 dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=4096k conv=sync; \
27 dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \
28 ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-jffs2.img
29 endef
30
31 define Image/Build/squashfs
32 $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
33 ( \
34 dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=4096k conv=sync; \
35 dd if=$(KDIR)/root.$(1) bs=256k conv=sync; \
36 ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
37 endef
38
39 $(eval $(call BuildImage))