1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-17 23:35:53 +03:00
openwrt-xburst/target/linux/ixp4xx-2.6/image/apex/Makefile
florian 8e86103011 Add another download source, also mirror it to openwrt mirror (#1124)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5964 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-02 08:37:00 +00:00

57 lines
1.2 KiB
Makefile

#
# 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://ftp.buici.com/pub/apex/ \
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))