* adding network config for olpc * adding libertas * config issue * quiet mode for...
[openwrt/staging/florian.git] / package / libertas / 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 # $Id: Makefile 8694 2007-09-08 19:55:42Z nbd $
8
9 include $(TOPDIR)/rules.mk
10 include $(INCLUDE_DIR)/kernel.mk
11
12 PKG_NAME:=kmod-libertas
13 PKG_RELEASE:=1
14
15 include $(INCLUDE_DIR)/package.mk
16
17 define KernelPackage/libertas
18 SUBMENU:=Other modules
19 DEPENDS:=@TARGET_olpc +kmod-ieee80211
20 TITLE:=Marvell 88W8015 Wireless Driver
21 FILES:= \
22 $(PKG_BUILD_DIR)/libertas.$(LINUX_KMOD_SUFFIX) \
23 $(PKG_BUILD_DIR)/usb8xxx.$(LINUX_KMOD_SUFFIX)
24 AUTOLOAD:=$(call AutoLoad,20,libertas usb8xxx)
25 endef
26
27 define Download/firmware
28 URL:=http://dev.laptop.org/pub/firmware/libertas
29 FILE:=usb8388-5.220.11.p5.bin
30 MD5SUM=37cc814d5a475fcf8f8fbe89a9c5d546
31 endef
32
33 define Build/Prepare
34 mkdir -p $(PKG_BUILD_DIR)
35 $(CP) ./src/* $(PKG_BUILD_DIR)/
36 endef
37
38 define Build/Compile
39 $(MAKE) -C "$(LINUX_DIR)" \
40 CROSS_COMPILE="$(TARGET_CROSS)" \
41 ARCH="$(LINUX_KARCH)" \
42 SUBDIRS="$(PKG_BUILD_DIR)" \
43 CONFIG_LIBERTAS=m \
44 CONFIG_LIBERTAS_USB=m \
45 EXTRA_CFLAGS="-I$(PKG_BUILD_DIR) -include compat.h -I$(STAGING_DIR)/usr/include/mac80211" \
46 modules
47 endef
48
49 define KernelPackage/libertas/install
50 $(INSTALL_DIR) $(1)/lib/firmware
51 $(INSTALL_BIN) $(DL_DIR)/usb8388-5.220.11.p5.bin $(1)/lib/firmware/usb8388.bin
52 $(INSTALL_DATA) ./files/LICENSE $(1)/lib/firmware/
53 endef
54
55 $(eval $(call KernelPackage,libertas))
56 $(eval $(call Download,firmware))