2009-07-28 15:51:32 +00:00
|
|
|
#
|
2010-04-12 23:15:56 +00:00
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
2009-07-28 15:51:32 +00:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
cp $(LINUX_DIR)/arch/powerpc/boot/zImage $(KDIR)/zImage
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
2010-04-12 23:15:56 +00:00
|
|
|
cp $(KDIR)/zImage $(BIN_DIR)/$(IMG_PREFIX)-zImage
|
2009-07-28 15:51:32 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/ext2
|
2010-04-12 23:15:56 +00:00
|
|
|
cp $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-ext2.img
|
2009-07-28 15:51:32 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|