blob: 87edceffca3b184be25b744cc8e18ebcf4ef5d98 (
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 = "Keyboard map"
SECTION = "base"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
RDEPENDS = "initscripts console-tools"
LICENSE = "GPL"
PACKAGE_ARCH = "${MACHINE}"
PR = "r10"
inherit update-rc.d
SRC_URI = "file://keymap"
SRC_URI_append_c7x0 = " file://keymap-*.map"
SRC_URI_append_tosa = " file://keymap-*.map"
SRC_URI_append_akita = " file://keymap-*.map"
SRC_URI_append_spitz = " file://keymap-*.map"
SRC_URI_append_collie = " file://keymap-*.map"
SRC_URI_append_poodle = " file://keymap-*.map"
SRC_URI_append_jornada6xx = " file://keymap-*.map"
SRC_URI_append_h2200 = " file://keymap-*.map"
INITSCRIPT_NAME = "keymap"
INITSCRIPT_PARAMS = "start 00 S ."
do_install () {
install -d ${D}${sysconfdir}/init.d/
install -m 0755 ${WORKDIR}/keymap ${D}${sysconfdir}/init.d/
case ${MACHINE} in
c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200)
install -m 0644 ${WORKDIR}/keymap-*.map ${D}${sysconfdir}
;;
*)
;;
esac
}
|