mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
network/broadcom-sta: Removed (won't build on modern kernels)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
09a8204425
commit
ffc1f1f606
5 changed files with 0 additions and 110 deletions
|
@ -1,13 +0,0 @@
|
|||
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
|
|
@ -1,63 +0,0 @@
|
|||
#!/bin/sh
|
||||
# Slackware build script for broadcom-sta proprietary wireless driver
|
||||
# Written by David Matthew Jerry Koenig <koenigdavidmj@gmail.com>
|
||||
# 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}
|
|
@ -1,10 +0,0 @@
|
|||
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"
|
|
@ -1,5 +0,0 @@
|
|||
# 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
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
# 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:
|
Loading…
Reference in a new issue