2009-06-20 06:52:24 +00:00
|
|
|
#
|
2010-04-12 23:15:56 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2007-06-02 00:46:02 +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/BuildKernel
|
2010-04-12 23:15:56 +00:00
|
|
|
cp $(KDIR)/vmlinuz $(BIN_DIR)/$(IMG_PREFIX)-zImage
|
2007-06-02 00:46:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Prepare
|
2009-06-20 06:52:24 +00:00
|
|
|
cp $(LINUX_DIR)/arch/cris/boot/zImage $(KDIR)/vmlinuz
|
2007-06-07 06:35:42 +00:00
|
|
|
$(MAKE) -C e100boot compile
|
|
|
|
$(MAKE) -C mkfimage compile
|
2007-06-02 00:46:02 +00:00
|
|
|
$(INSTALL_BIN) ./boot_linux $(BIN_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/generic
|
2008-05-03 15:51:16 +00:00
|
|
|
mkfimage $(KDIR)/vmlinuz $(KDIR)/vmlinuz.tmp
|
|
|
|
cat $(KDIR)/vmlinuz.tmp $(KDIR)/root.$(1) > $(KDIR)/fimage.$(1).tmp
|
|
|
|
dd if=$(KDIR)/fimage.$(1).tmp of=$(KDIR)/fimage.$(1) bs=$(2) conv=sync
|
2010-04-12 23:15:56 +00:00
|
|
|
cp $(KDIR)/fimage.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1)-fimage
|
2007-06-02 00:46:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-64k
|
|
|
|
$(call prepare_generic_jffs-64k,$(KDIR)/root.jff2-64k)
|
2008-05-03 15:51:16 +00:00
|
|
|
$(call Image/Build/generic,$(1),4194304)
|
2007-06-02 00:46:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2008-05-03 15:51:16 +00:00
|
|
|
$(call Image/Build/generic,$(1),4194304)
|
2007-06-02 00:46:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build
|
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildImage))
|