finally move buildroot-ng to trunk
[openwrt/staging/yousong.git] / target / image / magicbox / Makefile
1 #
2 # Copyright (C) 2006 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 define Build/Clean
11 endef
12
13 define Image/Prepare
14 endef
15
16 define Image/BuildKernel
17 cp $(LINUX_DIR)/arch/ppc/boot/images/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-64k
25 ( \
26 dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=65536 conv=sync; \
27 dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \
28 ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
29 endef
30
31 #define Image/Build/jffs2-128k
32 # ( \
33 # dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=131072 conv=sync; \
34 # dd if=$(KDIR)/root.$(1) bs=131072 conv=sync; \
35 # ) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
36 #endef
37
38 $(eval $(call BuildImage))