summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-06-10 13:34:27 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-06-10 13:34:27 +0200
commitb867ee3e06128d820ff7ffdeeee07a6bf749e584 (patch)
tree4267150f8406496bf265a8f0bdf353582567e9e8 /package
parent359fa4649d98da18b6639469d6ef5121041f3c83 (diff)
add basic support for wireless driver in bcm47xx devices
Diffstat (limited to 'package')
-rw-r--r--package/Config.in1
-rw-r--r--package/b43-firmware/Makefile26
2 files changed, 27 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index d6553882e..e9541dc22 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -593,6 +593,7 @@ endmenu
menu "Wireless"
source "package/aircrack-ng/Config.in"
+source "package/b43-firmware/Config.in"
source "package/chillispot/Config.in"
source "package/hostapd/Config.in"
source "package/iw/Config.in"
diff --git a/package/b43-firmware/Makefile b/package/b43-firmware/Makefile
new file mode 100644
index 000000000..efd88cc92
--- /dev/null
+++ b/package/b43-firmware/Makefile
@@ -0,0 +1,26 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= b43-firmware
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 37c8d2c029a7e5b82f4433a6fa1e2ee5
+PKG_DESCR:= firmware for b43 wireless cards
+PKG_SECTION:= sys
+PKG_SITES:= http://openadk.org/distfiles/
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,B43_FIRMWARE,b43-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_B43_FIRMWARE}/lib/firmware
+ ${CP} ${WRKBUILD}/* ${IDIR_B43_FIRMWARE}/lib/firmware/
+
+include ${TOPDIR}/mk/pkg-bottom.mk