2 # Copyright (C) 2006 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
16 define Image
/BuildKernel
17 cp
$(LINUX_DIR
)/arch
/ppc
/boot
/images
/uImage
$(BIN_DIR
)/openwrt-
$(BOARD
)-$(KERNEL
)-uImage
21 $(call Image
/Build
/$(1),$(1))
24 define Image
/Build
/jffs2-64k
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
31 #define Image/Build/jffs2-128k
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
38 $(eval
$(call BuildImage
))
This page took 0.039587 seconds and 5 git commands to generate.