blob: 585c33919c14987b803a199318b9cb3c9f92f127 (
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
|
# FIXME, consider using kernel staging directory instead of KERNEL_SOURCE which is
# located in the work directory. see module.bbclass
DESCRIPTION = "linux-wlan-ng (prism2.x, prism3, pcmcia, pci, usb) driver for 11Mbps wireless lan cards"
HOMEPAGE = "http://www.linux-wlan.org"
SECTION = "kernel/modules"
DEPENDS = "virtual/kernel"
LICENSE = "GPL"
SRC_URI = "file://no-compat.patch;patch=1 \
file://msleep-vs-mdelay.patch;patch=1 \
file://might-sleep.patch;patch=1 \
file://only-the-modules.patch;patch=1 \
# file://module_param_array.patch;patch=1 \
file://scripts-makefile-hostcc.patch;patch=1 \
file://pcmciasrc.patch;patch=1 \
file://config.in"
inherit module
PARALLEL_MAKE = ""
EXTRA_OEMAKE = "CC="${KERNEL_CC}" LD=${KERNEL_LD} PARALLEL_MAKE=''"
do_configure() {
install -m 0655 ${WORKDIR}/config.in ${S}/config.in
oe_runmake LINUX_SRC=${KERNEL_SOURCE} auto_config
# if grep CONFIG_PCMCIA=[ym] ${STAGING_KERNEL_DIR}/kernel-config; then
# echo "PRISM2_PCMCIA=y" >> config.mk
# echo "WLAN_KERN_PCMCIA=y" >> config.mk
# fi
echo "TARGET_ROOT_ON_HOST=${D}/" >> config.mk
echo "TARGET_MODDIR=${D}/lib/modules/${KERNEL_VERSION}/wlan-ng" >> config.mk
echo "CC=${KERNEL_CC}" >> config.mk
echo "LD=${KERNEL_LD}" >> config.mk
echo "LDFLAGS=" >> config.mk
# Listen closely... sssshhh... can you hear the wlan-ng build system suck?
rm -f ${KERNEL_SOURCE}/../config.mk
rm -f ${KERNEL_SOURCE}/../../config.mk
ln -sf ${S}/config.mk ${KERNEL_SOURCE}/..
ln -sf ${S}/config.mk ${KERNEL_SOURCE}/../..
install -m 0655 config.mk src/prism2/config.mk
install -d src/prism2/driver/include
ln -sf ${S}/src/include/wlan src/prism2/driver/include/wlan
ln -sf ${S}/src/prism2/include/prism2 src/prism2/driver/include/prism2
}
do_compile() {
oe_runmake -C src all
}
do_install() {
oe_runmake install DESTDIR=${D}
# Listen closely... sssshhh... can you hear the wlan-ng build system suck?
rm -f ${KERNEL_SOURCE}/../config.mk
rm -f ${KERNEL_SOURCE}/../../config.mk
# man page and configure scripts are shipped by wlan-ng-utils
rm -rf ${D}/usr/local/man
rm -rf ${D}/etc
}
PACKAGES =+ "${PN}-p80211 ${PN}-usb ${PN}-cs ${PN}-pci"
ALLOW_EMPTY_${PN} = "1"
FILES_${PN}-p80211 = "/lib/modules/${KERNEL_VERSION}/wlan-ng/p80211${KERNEL_OBJECT_SUFFIX}"
FILES_${PN}-usb = "/lib/modules/${KERNEL_VERSION}/wlan-ng/prism2_usb${KERNEL_OBJECT_SUFFIX}"
FILES_${PN}-cs = "/lib/modules/${KERNEL_VERSION}/wlan-ng/prism2_cs${KERNEL_OBJECT_SUFFIX}"
FILES_${PN}-pci = "/lib/modules/${KERNEL_VERSION}/wlan-ng/prism2_pci${KERNEL_OBJECT_SUFFIX} \
/lib/modules/${KERNEL_VERSION}/wlan-ng/prism2_plx${KERNEL_OBJECT_SUFFIX}"
RDEPENDS_${PN}-p80211 = "wlan-ng-utils"
RDEPENDS_${PN} = "${PN}-p80211"
RDEPENDS_${PN}-usb = "${PN}-p80211"
RDEPENDS_${PN}-cs = "${PN}-p80211"
RDEPENDS_${PN}-pci = "${PN}-p80211"
|