aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libdlo/kernel-module-udlfb.bb
blob: 55262d22c9b7e2533904b0f9ac747c726509feab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DESCRIPTION = "Framebuffer console driver for displaylink based usb devices"
LICENSE = "GPLv2"

PV = "0.2.2"

SRC_URI = "file://udlfb.c \
           file://udlfb.h \
           file://Makefile \
"

inherit module

S = "${WORKDIR}"

do_install() {
	install -d ${D}/lib/modules/${KERNEL_VERSION}/drivers/usb/
	install -m 0644 *.ko ${D}/lib/modules/${KERNEL_VERSION}/drivers/usb/
}