You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
933 B
38 lines
933 B
18 years ago
|
#
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
#
|
||
|
# This is free software, licensed under the GNU General Public License v2.
|
||
|
# See /LICENSE for more information.
|
||
|
#
|
||
|
include $(TOPDIR)/rules.mk
|
||
|
include $(INCLUDE_DIR)/image.mk
|
||
|
|
||
|
define Image/Prepare
|
||
18 years ago
|
cp $(LINUX_DIR)/arch/ppc/boot/images/uImage $(KDIR)/uImage
|
||
18 years ago
|
endef
|
||
|
|
||
|
define Image/BuildKernel
|
||
18 years ago
|
cp $(KDIR)/uImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-uImage
|
||
18 years ago
|
endef
|
||
|
|
||
|
define Image/Build
|
||
|
$(call Image/Build/$(1),$(1))
|
||
|
endef
|
||
|
|
||
|
define Image/Build/jffs2-64k
|
||
18 years ago
|
( \
|
||
18 years ago
|
dd if=$(KDIR)/uImage bs=1024k conv=sync; \
|
||
18 years ago
|
dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \
|
||
|
) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
||
18 years ago
|
endef
|
||
|
|
||
18 years ago
|
define Image/Build/squashfs
|
||
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
||
|
( \
|
||
|
dd if=$(LINUX_DIR)/arch/ppc/boot/images/uImage bs=1024k conv=sync; \
|
||
|
dd if=$(KDIR)/root.$(1) bs=65536 conv=sync; \
|
||
|
) > $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img
|
||
|
endef
|
||
18 years ago
|
|
||
|
$(eval $(call BuildImage))
|