f75b0aa395e3c97e9c609b4a26aae4d0c3f439ea
[openwrt-10.03/.git] / package / ixp4xx-microcode / Makefile
1
2 # Copyright (C) 2007 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:=ixp4xx-microcode
11 PKG_VERSION:=2.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=IPL_ixp400NpeLibrary-2_4.zip
15 PKG_SOURCE_URL:=http://downloadmirror.intel.com/12954/eng/
16 PKG_MD5SUM:=9a6dc3846041b899edf9eff8a906fb11
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/ixp4xx-microcode
23   SECTION:=net
24   CATEGORY:=Network
25   TITLE:=Microcode for the IXP4xx network engines
26   DEPENDS:=@TARGET_ixp4xx
27 endef
28
29 define Package/ixp4xx-microcode/description
30  This package contains the microcode needed to use the network engines in IXP4xx CPUs
31 endef
32
33 define Build/Prepare
34         rm -rf $(PKG_BUILD_DIR)
35         mkdir -p $(PKG_BUILD_DIR)
36         unzip -d $(PKG_BUILD_DIR)/ $(DL_DIR)/$(PKG_SOURCE)
37         mv $(PKG_BUILD_DIR)/ixp400_xscale_sw/src/npeDl/IxNpeMicrocode.c $(PKG_BUILD_DIR)/
38         rm -rf $(PKG_BUILD_DIR)/ixp400_xscale_sw
39         $(CP) ./src/* $(PKG_BUILD_DIR)/
40 endef
41
42 define Build/Compile
43         (cd $(PKG_BUILD_DIR); \
44                 $(HOSTCC) -Wall -I$(STAGING_DIR_HOST)/include IxNpeMicrocode.c -o IxNpeMicrocode; \
45                 ./IxNpeMicrocode -be \
46         )
47 endef
48
49 define Package/ixp4xx-microcode/install
50         $(INSTALL_DIR) $(1)/lib/firmware
51         $(INSTALL_DIR) $(1)/usr/share/doc
52         $(INSTALL_BIN) $(PKG_BUILD_DIR)/NPE-B $(1)/lib/firmware/
53         $(INSTALL_BIN) $(PKG_BUILD_DIR)/NPE-C $(1)/lib/firmware/
54         $(INSTALL_DATA) $(PKG_BUILD_DIR)/LICENSE.IPL $(1)/usr/share/doc/
55 endef
56
57 $(eval $(call BuildPackage,ixp4xx-microcode))