2006-06-27 00:35:46 +00: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 03:13:25 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/image.mk
|
2006-05-30 19:38:38 +00:00
|
|
|
|
2007-12-28 21:00:01 +00:00
|
|
|
define Image/Build/slug
|
2007-06-01 13:21:55 +00:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \
|
2007-12-28 21:00:01 +00:00
|
|
|
-L $(KDIR)/apex-nslu2-armeb.bin \
|
2007-11-10 23:08:11 +00:00
|
|
|
-k $(BIN_DIR)/openwrt-nslu2-zImage \
|
|
|
|
-r rootfs:$(BIN_DIR)/openwrt-$(BOARD)-$(1).img \
|
|
|
|
-p -o $(BIN_DIR)/openwrt-nslu2-$(1).bin
|
2007-08-10 13:09:12 +00:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \
|
2008-03-25 06:11:47 +00:00
|
|
|
-F -L $(KDIR)/apex-nslu2-16mb-armeb.bin \
|
2007-11-10 23:08:11 +00:00
|
|
|
-k $(BIN_DIR)/openwrt-nslu2-zImage \
|
|
|
|
-r rootfs:$(BIN_DIR)/openwrt-$(BOARD)-$(1).img \
|
|
|
|
-p -o $(BIN_DIR)/openwrt-nslu2-$(1)-16mb.bin
|
2007-12-28 21:00:01 +00:00
|
|
|
endef
|
2007-06-01 13:21:55 +00:00
|
|
|
|
2007-01-01 00:01:58 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C apex \
|
|
|
|
BUILD_DIR="$(KDIR)" \
|
|
|
|
TARGET="$(KDIR)" \
|
2007-04-02 12:05:57 +00:00
|
|
|
compile
|
2007-01-01 00:01:58 +00:00
|
|
|
endef
|
|
|
|
|
2006-08-06 10:42:12 +00:00
|
|
|
define Build/Clean
|
2007-01-01 00:01:58 +00:00
|
|
|
$(MAKE) -C apex clean
|
2006-08-06 10:42:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Prepare
|
2007-01-10 21:52:28 +00:00
|
|
|
cp $(LINUX_DIR)/arch/arm/boot/zImage $(KDIR)/zImage
|
2006-08-06 10:42:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/BuildKernel
|
2007-11-10 23:08:11 +00:00
|
|
|
cp $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-zImage
|
2006-12-19 13:14:06 +00:00
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh
|
2006-08-06 10:42:12 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
define Image/Build
|
2006-08-06 10:42:12 +00:00
|
|
|
$(call Image/Build/$(1),$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-64k
|
2007-11-10 23:08:11 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=65536 conv=sync
|
2006-08-06 10:42:12 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-128k
|
2007-11-10 23:08:11 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
|
2007-03-05 00:21:30 +00:00
|
|
|
$(call Image/Build/slug,$(1))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/squashfs
|
|
|
|
$(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
|
2007-11-10 23:08:11 +00:00
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
|
2007-03-05 00:21:30 +00:00
|
|
|
$(call Image/Build/slug,$(1))
|
2006-06-04 21:57:59 +00:00
|
|
|
endef
|
2006-05-30 19:38:38 +00:00
|
|
|
|
2006-06-04 21:57:59 +00:00
|
|
|
$(eval $(call BuildImage))
|