Add more license tags with SPDX identifiers
[openwrt/staging/mkresin.git] / package / boot / apex / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=apex
11 PKG_VERSION:=1.6.9
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://downloads.openwrt.org/sources/
16 PKG_MD5SUM:=9606cf2e3fd2c9a86fe0b61388509a30
17 PKG_TARGETS:=bin
18
19 PKG_LICENSE:=GPL-2.0+
20 PKG_LICENSE_FILES:=COPYING
21
22 include $(INCLUDE_DIR)/package.mk
23
24 export GCC_HONOUR_COPTS=s
25
26 define Package/apex
27 SECTION:=boot
28 CATEGORY:=Boot Loaders
29 DEPENDS:=@TARGET_ixp4xx
30 DEFAULT:=y
31 TITLE:=Boot loader for NSLU2, FSG3, NAS100D and others
32 URL:=http://wiki.buici.com/wiki/Apex_Bootloader
33 endef
34
35 define build_apex
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 ARCH=arm \
38 $(1)_config
39 $(MAKE) -C $(PKG_BUILD_DIR) \
40 $(TARGET_CONFIGURE_OPTS) \
41 KBUILD_HAVE_NLS=no \
42 ARCH=arm \
43 clean all
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/apex.bin $(PKG_BUILD_DIR)/out/apex-$(2).bin
45 endef
46
47 define Build/Compile
48 $(INSTALL_DIR) $(PKG_BUILD_DIR)/out
49 $(call build_apex,slugos-nslu2-armeb,nslu2-armeb)
50 $(call build_apex,slugos-nslu2-16mb-armeb,nslu2-16mb-armeb)
51 $(call build_apex,slugos-fsg3-armeb,fsg3-armeb)
52 $(call build_apex,slugos-nas100d-armeb,nas100d-armeb)
53 endef
54
55 define Package/apex/install
56 $(INSTALL_DIR) $(STAGING_DIR)/apex
57 $(CP) $(PKG_BUILD_DIR)/out/*.bin $(1)/
58 endef
59
60 $(eval $(call BuildPackage,apex))