diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-04-21 14:32:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-05 12:26:29 +0100 |
commit | cdf878387ad460f7c6b7a58dcc996918bcd07a0a (patch) | |
tree | b8962ec003760b36fc1ead9c0a5ad38c0c4d0f4a /meta/recipes-bsp/keymaps/keymaps_1.0.bb | |
parent | 5331f471045459a496f829cb747447e8f196d26e (diff) | |
download | poky-cdf878387ad460f7c6b7a58dcc996918bcd07a0a.tar.gz |
Remove machine-specific metadata for machines no longer in oe-core
(From OE-Core rev: 72567733033347b662d9baa07432985fd2da3efa)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/keymaps/keymaps_1.0.bb')
-rw-r--r-- | meta/recipes-bsp/keymaps/keymaps_1.0.bb | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/meta/recipes-bsp/keymaps/keymaps_1.0.bb b/meta/recipes-bsp/keymaps/keymaps_1.0.bb index 7f2211a2b9..4683fa1d3a 100644 --- a/meta/recipes-bsp/keymaps/keymaps_1.0.bb +++ b/meta/recipes-bsp/keymaps/keymaps_1.0.bb | |||
@@ -5,35 +5,17 @@ RDEPENDS_${PN} = "initscripts console-tools" | |||
5 | LICENSE = "GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" |
7 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 7 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
8 | PR = "r18" | 8 | PR = "r19" |
9 | 9 | ||
10 | inherit update-rc.d | 10 | inherit update-rc.d |
11 | 11 | ||
12 | SRC_URI = "file://keymap.sh \ | 12 | SRC_URI = "file://keymap.sh \ |
13 | file://GPLv2.patch" | 13 | file://GPLv2.patch" |
14 | 14 | ||
15 | SRC_URI_append_c7x0 = " file://keymap-*.map" | ||
16 | SRC_URI_append_tosa = " file://keymap-*.map" | ||
17 | SRC_URI_append_akita = " file://keymap-*.map" | ||
18 | SRC_URI_append_spitz = " file://keymap-*.map" | ||
19 | SRC_URI_append_collie = " file://keymap-*.map" | ||
20 | SRC_URI_append_poodle = " file://keymap-*.map" | ||
21 | SRC_URI_append_jornada6xx = " file://keymap-*.map" | ||
22 | SRC_URI_append_h2200 = " file://keymap-*.map" | ||
23 | SRC_URI_append_htcuniversal = " file://keymap-*.map" | ||
24 | |||
25 | INITSCRIPT_NAME = "keymap.sh" | 15 | INITSCRIPT_NAME = "keymap.sh" |
26 | INITSCRIPT_PARAMS = "start 01 S ." | 16 | INITSCRIPT_PARAMS = "start 01 S ." |
27 | 17 | ||
28 | do_install () { | 18 | do_install () { |
29 | install -d ${D}${sysconfdir}/init.d/ | 19 | install -d ${D}${sysconfdir}/init.d/ |
30 | install -m 0755 ${WORKDIR}/keymap.sh ${D}${sysconfdir}/init.d/ | 20 | install -m 0755 ${WORKDIR}/keymap.sh ${D}${sysconfdir}/init.d/ |
31 | |||
32 | case ${MACHINE} in | ||
33 | c7x0 | tosa | spitz | akita | borzoi | collie | poodle | jornada6xx | h2200 | htcuniversal ) | ||
34 | install -m 0644 ${WORKDIR}/keymap-*.map ${D}${sysconfdir} | ||
35 | ;; | ||
36 | *) | ||
37 | ;; | ||
38 | esac | ||
39 | } | 21 | } |