blob: 7f95adf34119f413df0331def3a1335463c6aadd (
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
|
DESCRIPTION = "Linux Driver for Gumstix robostix daughtercards"
SECTION = "base"
PRIORITY = "optional"
LICENSE = "GPL"
RDEPENDS = "kernel (${KERNEL_VERSION})"
DEPENDS = "virtual/kernel"
PR = "r1"
INITSCRIPT_NAME = "robostix"
INITSCRIPT_PARAMS = "defaults 10"
SRC_URI = "\
file://Makefile \
file://robostix.h \
file://robostix.c \
file://robostix.init \
"
S = "${WORKDIR}"
inherit module update-rc.d
do_install() {
install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra/
install -m 0644 ${WORKDIR}/robostix.ko ${D}${base_libdir}/modules/${KERNEL_VERSION}/extra/
install -d ${D}${sysconfdir}/init.d/
install -m 0755 ${WORKDIR}/robostix.init ${D}${sysconfdir}/init.d/robostix
}
PACKAGES = "${PN}"
FILES_${PN} = "${base_libdir}/modules/"
FILES_${PN} += "${sysconfdir}/"
|