summaryrefslogtreecommitdiffstats
path: root/meta/packages/keymaps/keymaps_1.0.bb
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2008-07-03 10:46:56 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2008-07-03 10:46:56 +0000
commita243bf5df281c8e4680f36985e63cd12e226f63f (patch)
tree095fb92f91c2c94efc2db845eba6d4961882e94b /meta/packages/keymaps/keymaps_1.0.bb
parent4322a92f1e2ddc0f98f0309d0eb0332ad56160cb (diff)
downloadpoky-a243bf5df281c8e4680f36985e63cd12e226f63f.tar.gz
keymaps: initscript can be sourced
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4797 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/keymaps/keymaps_1.0.bb')
-rw-r--r--meta/packages/keymaps/keymaps_1.0.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/packages/keymaps/keymaps_1.0.bb b/meta/packages/keymaps/keymaps_1.0.bb
index 813ba41011..0f0f36a555 100644
--- a/meta/packages/keymaps/keymaps_1.0.bb
+++ b/meta/packages/keymaps/keymaps_1.0.bb
@@ -3,11 +3,11 @@ SECTION = "base"
3RDEPENDS = "initscripts console-tools" 3RDEPENDS = "initscripts console-tools"
4LICENSE = "GPL" 4LICENSE = "GPL"
5PACKAGE_ARCH = "${MACHINE}" 5PACKAGE_ARCH = "${MACHINE}"
6PR = "r15" 6PR = "r16"
7 7
8inherit update-rc.d 8inherit update-rc.d
9 9
10SRC_URI = "file://keymap" 10SRC_URI = "file://keymap.sh"
11 11
12SRC_URI_append_c7x0 = " file://keymap-*.map" 12SRC_URI_append_c7x0 = " file://keymap-*.map"
13SRC_URI_append_tosa = " file://keymap-*.map" 13SRC_URI_append_tosa = " file://keymap-*.map"
@@ -19,12 +19,12 @@ SRC_URI_append_jornada6xx = " file://keymap-*.map"
19SRC_URI_append_h2200 = " file://keymap-*.map" 19SRC_URI_append_h2200 = " file://keymap-*.map"
20SRC_URI_append_htcuniversal = " file://keymap-*.map" 20SRC_URI_append_htcuniversal = " file://keymap-*.map"
21 21
22INITSCRIPT_NAME = "keymap" 22INITSCRIPT_NAME = "keymap.sh"
23INITSCRIPT_PARAMS = "start 01 S ." 23INITSCRIPT_PARAMS = "start 01 S ."
24 24
25do_install () { 25do_install () {
26 install -d ${D}${sysconfdir}/init.d/ 26 install -d ${D}${sysconfdir}/init.d/
27 install -m 0755 ${WORKDIR}/keymap ${D}${sysconfdir}/init.d/ 27 install -m 0755 ${WORKDIR}/keymap.sh ${D}${sysconfdir}/init.d/
28 28
29 case ${MACHINE} in 29 case ${MACHINE} in
30 c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200 | htcuniversal ) 30 c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200 | htcuniversal )