diff options
author | rwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-01-01 00:00:58 +0000 |
---|---|---|
committer | rwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-01-01 00:00:58 +0000 |
commit | 5f4301e8926f3f9c6e84b4b8793e97494c50b9dc (patch) | |
tree | a02e933c497df50506c351a8ecd35e8f54d895b9 /target/linux/ixp4xx-2.6/image/apex/Makefile | |
parent | 27516448330679d05218c42a3ca35e00a38f777a (diff) |
Apex bootloader (for ixp4xx devices)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5947 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ixp4xx-2.6/image/apex/Makefile')
-rw-r--r-- | target/linux/ixp4xx-2.6/image/apex/Makefile | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/target/linux/ixp4xx-2.6/image/apex/Makefile b/target/linux/ixp4xx-2.6/image/apex/Makefile new file mode 100644 index 000000000..d01f3b124 --- /dev/null +++ b/target/linux/ixp4xx-2.6/image/apex/Makefile @@ -0,0 +1,55 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=apex +PKG_VERSION:=1.4.7 +PKG_RELEASE:=1 + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=ftp://metalab.unc.edu/pub/Linux/system/boot/apex/ +PKG_MD5SUM:=ed2183311aacf5714afbd825f3671417 +PKG_CAT:=zcat + +PKG_INSTALL_DIR:=$(TARGET) + +include $(INCLUDE_DIR)/package.mk + +define Package/apex-nslu2 + TITLE:=apex-nslu2 + DESCRIPTION:=\ + The Apex Bootloader (compiled for the Linksys NSLU2). + URL:=http://wiki.buici.com/twiki/bin/view/Main/ApexBootloader + SECTION:=base + CATEGORY:=Boot Loaders + DEPENDS:=@LINUX_2_6_IXP4XX +endef + +define Build/Configure + $(MAKE) -C $(PKG_BUILD_DIR) \ + ARCH=arm \ + slugos-nslu2-armeb_config +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + ARCH=arm \ + all +endef + +compile-targets: ${PKG_BUILD_DIR}/.built + +ifneq ($(TARGET),) +install: compile + $(INSTALL_BIN) $(PKG_BUILD_DIR)/apex.bin $(TARGET)/apex-nslu2-armeb.bin +endif + +$(eval $(call BuildPackage,apex-nslu2)) |