From 0dbc3a5839a39591ed966c24433b7827d3e19e15 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Fri, 28 Sep 2012 23:37:47 -0500 Subject: Revert "network/broadcom-sta: Removed (won't build on modern kernels)" This reverts commit ffc1f1f606279abbe9537fd4108edd289c1625f1. Signed-off-by: Robby Workman --- network/broadcom-sta/README | 13 ++++++ network/broadcom-sta/broadcom-sta.SlackBuild | 63 ++++++++++++++++++++++++++++ network/broadcom-sta/broadcom-sta.info | 10 +++++ network/broadcom-sta/doinst.sh | 5 +++ network/broadcom-sta/slack-desc | 19 +++++++++ 5 files changed, 110 insertions(+) create mode 100644 network/broadcom-sta/README create mode 100644 network/broadcom-sta/broadcom-sta.SlackBuild create mode 100644 network/broadcom-sta/broadcom-sta.info create mode 100644 network/broadcom-sta/doinst.sh create mode 100644 network/broadcom-sta/slack-desc (limited to 'network/broadcom-sta') diff --git a/network/broadcom-sta/README b/network/broadcom-sta/README new file mode 100644 index 0000000000..b22315d640 --- /dev/null +++ b/network/broadcom-sta/README @@ -0,0 +1,13 @@ +The broadcom-sta package includes the kernel module 'wl', which contains +the Broadcom-provided proprietary kernel driver that supports a number of +their cards. Known supported model numbers include the BCM4311, BCM4312, +BCM4321, and BCM4322 chipsets. + +Read the included LICENSE.txt file (placed in /usr/doc) before using this. + +You may also want to create /etc/modprobe.d/b43_blacklist.conf and add the +following lines to it: + blacklist b43 + blacklist b43legacy + blacklist bcma + blacklist ssb diff --git a/network/broadcom-sta/broadcom-sta.SlackBuild b/network/broadcom-sta/broadcom-sta.SlackBuild new file mode 100644 index 0000000000..7cc7bb0235 --- /dev/null +++ b/network/broadcom-sta/broadcom-sta.SlackBuild @@ -0,0 +1,63 @@ +#!/bin/sh +# Slackware build script for broadcom-sta proprietary wireless driver +# Written by David Matthew Jerry Koenig +# Public domain. + +PRGNAM=broadcom-sta +VERSION=5.100.82.112 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +KERNEL=${KERNEL:-$(uname -r)} +PKG_VERSION=${VERSION}_$(echo $KERNEL | tr - _) + +case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; +esac + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +WORKDIR=$TMP/build-$PRGNAM + +# Skipped the usual set of variables since they don't apply here +# (libdir isn't needed, and custom CFLAGS aren't wanted). +if [ "$ARCH" = "i486" ]; then + MY_ARCH="x86_32" +elif [ "$ARCH" = "x86_64" ]; then + MY_ARCH="x86_64" +else + printf "\n\n$ARCH is not supported...\n" + exit 1 +fi + +set -e + +rm -rf $WORKDIR $PKG +mkdir -p $TMP $WORKDIR $PKG $OUTPUT +cd $WORKDIR +tar xvf $CWD/hybrid-portsrc_${MY_ARCH}-v$(printf $VERSION|tr . _).tar.gz + +# Build the module +make -C /lib/modules/$KERNEL/build M=$WORKDIR clean +make -C /lib/modules/$KERNEL/build M=$WORKDIR + +# Install the module +mkdir -p $PKG/lib/modules/$KERNEL/kernel/extra +cp wl.ko $PKG/lib/modules/$KERNEL/kernel/extra + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $WORKDIR/lib/LICENSE.txt > $PKG/usr/doc/$PRGNAM-$VERSION/LICENSE.txt + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +chown -R root:root . +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKG_VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/network/broadcom-sta/broadcom-sta.info b/network/broadcom-sta/broadcom-sta.info new file mode 100644 index 0000000000..18e3935b4d --- /dev/null +++ b/network/broadcom-sta/broadcom-sta.info @@ -0,0 +1,10 @@ +PRGNAM="broadcom-sta" +VERSION="5.100.82.112" +HOMEPAGE="http://www.broadcom.com/support/802.11/linux_sta.php" +DOWNLOAD="http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_x86_32-v5_100_82_112.tar.gz" +MD5SUM="62d04d148b99f993ef575a71332593a9" +DOWNLOAD_x86_64="http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_x86_64-v5_100_82_112.tar.gz" +MD5SUM_x86_64="310d7ce233a9a352fbe62c451b2ea309" +REQUIRES="" +MAINTAINER="David Matthew Jerry Koenig" +EMAIL="koenigdavidmj@gmail.com" diff --git a/network/broadcom-sta/doinst.sh b/network/broadcom-sta/doinst.sh new file mode 100644 index 0000000000..99b4a89598 --- /dev/null +++ b/network/broadcom-sta/doinst.sh @@ -0,0 +1,5 @@ +# A good idea whenever kernel modules are added or changed: +if [ -x sbin/depmod ]; then + /sbin/depmod -a 1> /dev/null 2> /dev/null +fi + diff --git a/network/broadcom-sta/slack-desc b/network/broadcom-sta/slack-desc new file mode 100644 index 0000000000..9103fa4f6c --- /dev/null +++ b/network/broadcom-sta/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +broadcom-sta: broadcom-sta (Broadcom wireless drivers) +broadcom-sta: +broadcom-sta: Proprietary drivers for a number of Broadcom cards. Includes a +broadcom-sta: kernel module named 'wl'. +broadcom-sta: +broadcom-sta: For more information, see: +broadcom-sta: http://www.broadcom.com/support/802.11/linux_sta.php +broadcom-sta: +broadcom-sta: +broadcom-sta: +broadcom-sta: -- cgit v1.2.3