c10d97484a
Note, that licensing stuff is a nightmare: many packages does not clearly state their licenses, and often multiple source files are simply copied together - each with different licensing information in the file headers. I tried hard to ensure, that the license information extracted into the OpenWRT's makefiles fit the "spirit" of the packages, e.g. such small packages which come without a dedicated source archive "inherites" the OpenWRT's own license in my opinion. However, I can not garantee that I always picked the correct information and/or did not miss license information. Signed-off-by: Michael Heimpold <mhei@heimpold.de> SVN-Revision: 43155
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=apex
|
|
PKG_VERSION:=1.6.9
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
|
|
PKG_MD5SUM:=9606cf2e3fd2c9a86fe0b61388509a30
|
|
PKG_TARGETS:=bin
|
|
|
|
PKG_LICENSE:=GPL-2.0+
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
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
|
|
$(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))
|