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-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 05:25:09 +00:00
|
|
|
$(MAKE) -C npe-ucode \
|
|
|
|
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
|
2007-01-01 05:25:09 +00:00
|
|
|
$(MAKE) -C npe-ucode 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-01-10 21:52:28 +00:00
|
|
|
cp $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-zImage
|
2006-12-19 13:14:06 +00:00
|
|
|
# $(shell BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh)
|
|
|
|
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
|
|
|
|
|
2007-03-05 00:21:30 +00:00
|
|
|
define Image/Build/slug
|
|
|
|
BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/slugimage.pl \
|
|
|
|
-L $(KDIR)/apex-nslu2-armeb.bin -m $(KDIR)/NPE-B \
|
|
|
|
-k $(BIN_DIR)/openwrt-nslu2-$(KERNEL)-zImage \
|
|
|
|
-r Flashdisk:$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img \
|
|
|
|
-p -o $(BIN_DIR)/openwrt-nslu2-$(KERNEL)-$(1).bin
|
|
|
|
endef
|
|
|
|
|
2006-08-06 10:42:12 +00:00
|
|
|
define Image/Build/jffs2-64k
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img bs=65536 conv=sync
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Image/Build/jffs2-128k
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(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)
|
|
|
|
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img bs=131072 conv=sync
|
|
|
|
$(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))
|
2007-01-20 18:45:54 +00:00
|
|
|
|
2007-04-27 23:15:55 +00:00
|
|
|
UCODEFILE:=IPL_ixp400NpeLibrary-2_3_2.zip
|
2007-01-20 18:45:54 +00:00
|
|
|
|
|
|
|
define Require/npe-ucode
|
|
|
|
[ -f $(DL_DIR)/$(UCODEFILE) ]
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Require,npe-ucode, \
|
|
|
|
You must manually download $(UCODEFILE) from \\\
|
|
|
|
http://www.intel.com/design/network/products/npfamily/ixp400_current.htm \\\
|
|
|
|
and put it in $(DL_DIR). \\\
|
|
|
|
You will need to agree to the Intel Public License to do so - please do read it! \
|
|
|
|
))
|