blob: 10e83c4caabc466575d5101c7b493af01f52074c (
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.3"
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/
}
|