2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-06-21 06:13:25 +03:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2006-05-30 22:38:38 +03:00
|
|
|
|
2009-04-06 12:56:30 +03:00
|
|
|
ifdef CONFIG_PACKAGE_apex
|
|
|
|
define Image/Build/Linksys
|
2007-06-01 16:21:55 +03:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \
|
2009-04-06 12:56:30 +03:00
|
|
|
-L $(BIN_DIR)/apex/apex-$(2)-armeb.bin \
|
2009-03-22 14:35:44 +02:00
|
|
|
-k $(BIN_DIR)/openwrt-$(2)-zImage \
|
2007-11-11 01:08:11 +02:00
|
|
|
-r rootfs:$(BIN_DIR)/openwrt-$(BOARD)-$(1).img \
|
2009-03-22 14:35:44 +02:00
|
|
|
-p -o $(BIN_DIR)/openwrt-$(2)-$(1).bin
|
2007-08-10 16:09:12 +03:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \
|
2009-04-06 12:56:30 +03:00
|
|
|
-F -L $(BIN_DIR)/apex/apex-$(2)-16mb-armeb.bin \
|
2009-03-22 14:35:44 +02:00
|
|
|
-k $(BIN_DIR)/openwrt-$(2)-zImage \
|
2007-11-11 01:08:11 +02:00
|
|
|
-r rootfs:$(BIN_DIR)/openwrt-$(BOARD)-$(1).img \
|
2009-03-22 14:35:44 +02:00
|
|
|
-p -o $(BIN_DIR)/openwrt-$(2)-$(1)-16mb.bin
|
2009-04-06 12:56:30 +03:00
|
|
|
endef
|
|
|
|
endif
|
2009-03-22 14:35:44 +02:00
|
|
|
|
|
|
|
define Image/Build/Freecom
|
|
|
|
$(INSTALL_DIR) $(TARGET_DIR)/boot
|
|
|
|
# TODO: Add special CMDLINE shim for webupgrade image here
|
|
|
|
$(CP) $(BIN_DIR)/openwrt-$(2)-zImage $(TARGET_DIR)/zImage
|
2009-03-23 20:14:14 +02:00
|
|
|
$(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --numeric-owner --owner=0 --group=0 -C $(TARGET_DIR)/ .
|
2009-03-22 14:35:44 +02:00
|
|
|
$(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img
|
2009-04-06 13:29:40 +03:00
|
|
|
rm -f $(TARGET_DIR)/zImage
|
2007-12-28 23:00:01 +02:00
|
|
|
endef
|
2007-06-01 16:21:55 +03:00
|
|
|
|
2006-08-06 13:42:12 +03:00
|
|
|
define Image/Prepare
|
2007-01-10 23:52:28 +02:00
|
|
|
cp $(LINUX_DIR)/arch/arm/boot/zImage $(KDIR)/zImage
|
2006-08-06 13:42:12 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
2007-11-11 01:08:11 +02:00
|
|
|
cp $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-zImage
|
2006-12-19 15:14:06 +02:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh
|
2006-08-06 13:42:12 +03:00
|
|
|
endef
|
|
|
|
|
2006-06-05 00:57:59 +03:00
|
|
|
define Image/Build
|
2006-08-06 13:42:12 +03:00
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-64k
|
2007-11-11 01:08:11 +02:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=65536 conv=sync
|
2006-08-06 13:42:12 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-128k
|
2007-11-11 01:08:11 +02:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
|
2009-03-22 14:35:44 +02:00
|
|
|
$(call Image/Build/Linksys,$(1))
|
|
|
|
$(call Image/Build/Freecom,$(1),fsg3,$(1))
|
2007-03-05 02:21:30 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
2009-03-22 14:35:44 +02:00
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2007-11-11 01:08:11 +02:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
|
2009-03-22 14:35:44 +02:00
|
|
|
$(call Image/Build/Linksys,$(1),nslu2,$(1))
|
|
|
|
$(call Image/Build/Freecom,$(1),fsg3,$(1))
|
2006-06-05 00:57:59 +03:00
|
|
|
endef
|
2006-05-30 22:38:38 +03:00
|
|
|
|
2006-06-05 00:57:59 +03:00
|
|
|
$(eval $(call BuildImage))
|