blob: 41285fb4123bf3947f29b528250719e04aeb2d29 (
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
|
DESCRIPTION = "Linux Driver for the 802.11g Prism GT / Prism Duette / Prism Indigo Chipsets"
SECTION = "base"
PRIORITY = "optional"
HOMEPAGE = "http://prism54.org"
LICENSE = "GPL"
RDEPENDS = "kernel (${KERNEL_VERSION}) prism54-firmware (1.0.3.0) hotplug"
RRECOMMENDS = "kernel-module-firmware-class"
DEPENDS = "virtual/kernel prism54-firmware"
PR = "r1"
SRC_URI = "http://prism54.org/pub/linux/testing/tars/2004-06/prism54-1.2.tar.bz2"
S = "${WORKDIR}/prism54-${PV}"
inherit module-base
# Hack Alert :D
ARCH_mipsel = "mips"
EXTRA_OEMAKE = "KDIR=${STAGING_KERNEL_DIR} KMISC=${D}${base_libdir}/modules/${KERNEL_VERSION}/net KVER=${KERNEL_VERSION}"
do_compile() {
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
oe_runmake modules
}
do_install() {
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
oe_runmake install
}
FILES_${PN} = "/lib/modules/"
|