blob: 59a0e2a55d47667b9ea12fa4831b46a3c67f7691 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils linux-info linux-mod
DESCRIPTION="Broadcom's IEEE 802.11a/b/g/n hybrid Linux device driver"
HOMEPAGE="http://www.broadcom.com/support/802.11/"
SRC_BASE="http://www.broadcom.com/docs/linux_sta/hybrid-v35"
SRC_URI="x86? ( ${SRC_BASE}-nodebug-pcoem-${PV//\./_}.tar.gz )
amd64? ( ${SRC_BASE}_64-nodebug-pcoem-${PV//\./_}.tar.gz )
http://www.broadcom.com/docs/linux_sta/README_${PV}.txt -> README-${P}.txt"
LICENSE="Broadcom"
KEYWORDS="-* ~amd64 ~x86"
RESTRICT="mirror"
DEPEND="sys-kernel/dkms"
RDEPEND=""
S="${WORKDIR}"
MODULE_NAMES="wl(net/wireless)"
MODULESD_WL_ALIASES=("wlan0 wl")
pkg_setup() {
# bug #300570
# NOTE<lxnay>: module builds correctly anyway with b43 and SSB enabled
# make checks non-fatal. The correct fix is blackisting ssb and, perhaps
# b43 via udev rules. Moreover, previous fix broke binpkgs support.
CONFIG_CHECK="~!B43 ~!BCMA ~!SSB"
CONFIG_CHECK2="LIB80211 ~!MAC80211 ~LIB80211_CRYPT_TKIP"
ERROR_B43="B43: If you insist on building this, you must blacklist it!"
ERROR_BCMA="BCMA: If you insist on building this, you must blacklist it!"
ERROR_SSB="SSB: If you insist on building this, you must blacklist it!"
ERROR_LIB80211="LIB80211: Please enable it. If you can't find it: enabling the driver for \"Intel PRO/Wireless 2100\" or \"Intel PRO/Wireless 2200BG\" (IPW2100 or IPW2200) should suffice."
ERROR_MAC80211="MAC80211: If you insist on building this, you must blacklist it!"
ERROR_PREEMPT_RCU="PREEMPT_RCU: Please do not set the Preemption Model to \"Preemptible Kernel\"; choose something else."
ERROR_LIB80211_CRYPT_TKIP="LIB80211_CRYPT_TKIP: You will need this for WPA."
if kernel_is ge 3 8 8; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} CFG80211 ~!PREEMPT_RCU ~!PREEMPT"
elif kernel_is ge 2 6 32; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} CFG80211"
elif kernel_is ge 2 6 31; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} WIRELESS_EXT ~!MAC80211"
elif kernel_is ge 2 6 29; then
CONFIG_CHECK="${CONFIG_CHECK} ${CONFIG_CHECK2} WIRELESS_EXT COMPAT_NET_DEV_OPS"
else
CONFIG_CHECK="${CONFIG_CHECK} IEEE80211 IEEE80211_CRYPT_TKIP"
fi
}
src_prepare() {
epatch \
"${FILESDIR}/broadcom-sta-6.30.223.141-makefile.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.141-eth-to-wlan.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.141-gcc.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.248-r3-Wno-date-time.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.271-r1-linux-3.18.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.271-r2-linux-4.3-v2.patch" \
"${FILESDIR}/broadcom-sta-6.30.223.271-r3-linux-4.7.patch"
epatch_user
cd "${S}" || die
mkdir kernel || die
cp "${FILESDIR}"/dkms.conf "${S}" || die
cp "${FILESDIR}"/dkms.conf kernel || die
}
src_compile(){
ewarn 'There is no need for compilation here'
}
src_install() {
dodir /usr/src/${P}
insinto /usr/src/${P}
doins -r "${S}"/*
}
pkg_postinst() {
dkms add ${PN}/${PV}
}
pkg_postrm() {
dkms remove ${PN}/${PV} --all
}
|