aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/nonworking/mISDN/misdn_cvs.bb
blob: 5d254b0e74d382fa636a4d052113421fcee60a83 (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
DESCRIPTION = "mISDN kernel packages"
PRIORITY = "optional"
SECTION = "kernel/modules"
LICENSE = "GPL"
PR = "r0"

DEFAULT_PREFERENCE = "-1"

# hfcs_usb_endianchecks.diff does not apply cleanly anymore (cf. bug 240)
# without it the package at least compiles.  no guarantees about functionality.
SRC_URI = "cvs://anonymous:readonly@cvs.isdn4linux.de/i4ldev;module=mISDN;method=pserver \
#	   file://hfcs_usb_endianchecks.diff \
	   file://Makefile"

S = "${WORKDIR}/mISDN/"

inherit module

do_compile_prepend() {
	cp -f ${WORKDIR}/Makefile ${S}/
	cp ${S}/drivers/isdn/hardware/mISDN/Makefile.v2.6 ${S}/drivers/isdn/hardware/mISDN/Makefile
}

do_compile () {
        unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
        oe_runmake 'KDIR=${STAGING_KERNEL_DIR}' \
		   'CC=${KERNEL_CC}' \
                   'LD=${KERNEL_LD}' 
}

do_install() {   
        install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/isdn/hardware/mISDN/
        install -m 0644 ${S}/drivers/isdn/hardware/mISDN/*${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/isdn/hardware/mISDN
}