aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/robostix-module/robostix-module.bb
blob: 859b584b4531f26a7e4cd880a0ac26b50622510b (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_${PN} = "kernel-${KERNEL_VERSION}"
DEPENDS = "virtual/kernel"

PR = "r2"

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}/"