blob: 2f476a8b3c0bacd9dbf23b2798f2efa826ada8fb (
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
|
DESCRIPTION = "Linux driver for 802.11a/b/g universal NIC cards using Atheros chip sets"
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
RDEPENDS = "kernel (${KERNEL_VERSION})"
DEPENDS = "virtual/kernel"
PR="r3"
WACKELF_SRC_URI = ""
WACKELF_SRC_URI_ixp4xx = " file://20-xscale-VFP-wackelf.patch;patch=1"
WACKELF_SRC_URI_compulab-pxa270 = " file://20-xscale-VFP-wackelf.patch;patch=1"
SRC_URI = "http://snapshots.madwifi.org/${PN}/${PN}-${PV}.tar.gz \
file://10-xscale-be-elf-copts.patch;patch=1 \
file://10-xscale-le-elf-copts.patch;patch=1 \
file://10-sh4-le-elf-copts.patch;patch=1 \
${WACKELF_SRC_URI}"
S = "${WORKDIR}/${PN}-${PV}"
inherit module-base
ARCH_efika="powerpc"
ARCH_dht-walnut="ppc"
EXTRA_OEMAKE = "LDFLAGS= KERNELPATH=${STAGING_KERNEL_DIR} KERNELRELEASE=${KERNEL_VERSION} TOOLPREFIX=${TARGET_PREFIX}"
EXTRA_OEMAKE_prepend_ixp4xxle = "TARGET=xscale-le-elf "
EXTRA_OEMAKE_prepend_ixp4xxbe = "TARGET=xscale-be-elf "
do_compile() {
oe_runmake all
}
do_stage() {
install -d ${STAGING_INCDIR}/${PN}/include
install -d ${STAGING_INCDIR}/${PN}/net80211
cp --dereference include/compat.h ${STAGING_INCDIR}/${PN}/include/
cp --dereference net80211/*.h ${STAGING_INCDIR}/${PN}/net80211/
}
do_install() {
install -d ${D}${sbindir}
oe_runmake DESTDIR=${D} BINDIR=${sbindir} install
}
pkg_postinst() {
if test "x$D" != "x"; then
exit 1
else
depmod -ae
fi
}
PACKAGES = "${PN}-modules ${PN}-tools"
FILES_${PN}-modules = "/lib/modules/"
FILES_${PN}-tools = "/usr/"
|