diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-06 09:56:30 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-06 09:56:30 +0000 |
commit | 0cb0c1a257f52266056306e0b8bcb5fb27bdf989 (patch) | |
tree | 1fc64ae50c1bd8cf17a92ef5aacf54778da1ac2a /package/apex/Makefile | |
parent | 9493f9c19ed2c7d407dcd70e72934c00e3b5849a (diff) | |
download | upstream-0cb0c1a257f52266056306e0b8bcb5fb27bdf989.tar.gz upstream-0cb0c1a257f52266056306e0b8bcb5fb27bdf989.tar.bz2 upstream-0cb0c1a257f52266056306e0b8bcb5fb27bdf989.zip |
ixp4xx: make apex optional, clean up the makefile - fixes spurious recompilation issues
SVN-Revision: 15115
Diffstat (limited to 'package/apex/Makefile')
-rw-r--r-- | package/apex/Makefile | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/package/apex/Makefile b/package/apex/Makefile new file mode 100644 index 0000000000..75a8ad7828 --- /dev/null +++ b/package/apex/Makefile @@ -0,0 +1,61 @@ +# +# 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.5.14 +PKG_RELEASE:=3 + +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:=22fb46e76c8221c7bcc9734602367460 +PKG_TARGETS:=bin + +include $(INCLUDE_DIR)/package.mk + +export GCC_HONOUR_COPTS=s + +define Package/apex + SECTION:=boot + CATEGORY:=Boot Loaders + DEPENDS:=@TARGET_ixp4xx + DEFAULT:=y + TITLE:=Boot loader for NSLU2, FSG3, NAS100D and others + URL:=http://wiki.buici.com/wiki/Apex_Bootloader +endef + +define build_apex + $(MAKE) -C $(PKG_BUILD_DIR) \ + ARCH=arm \ + $(1)_config + $(SED) 's,.*CONFIG_AEABI.*,$(if $(CONFIG_EABI_SUPPORT),CONFIG_AEABI=y,# CONFIG_AEABI is not set),' $(PKG_BUILD_DIR)/.config + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + KBUILD_HAVE_NLS=no \ + ARCH=arm \ + clean all + $(INSTALL_BIN) $(PKG_BUILD_DIR)/apex.bin $(PKG_BUILD_DIR)/out/apex-$(2).bin +endef + +define Build/Compile + $(INSTALL_DIR) $(PKG_BUILD_DIR)/out + $(call build_apex,slugos-nslu2-armeb,nslu2-armeb) + $(call build_apex,slugos-nslu2-16mb-armeb,nslu2-16mb-armeb) + $(call build_apex,slugos-fsg3-armeb,fsg3-armeb) + $(call build_apex,slugos-nas100d-armeb,nas100d-armeb) +endef + +define Package/apex/install + $(INSTALL_DIR) $(STAGING_DIR)/apex + $(CP) $(PKG_BUILD_DIR)/out/*.bin $(1)/ +endef + +$(eval $(call BuildPackage,apex)) |