diff options
author | Michael Lippautz <michael.lippautz@gmail.com> | 2010-02-26 07:44:02 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-02-26 19:25:07 +0100 |
commit | 0da188d1ae9fa082c986178f299b7fdcf0223240 (patch) | |
tree | 965df59a30cd9265a0fd09d73cac8741c4d87081 /recipes/gpsd | |
parent | 324d53b4b8d77fa30ec344dc431f05e8508087d7 (diff) |
gpsd-device-config: Adds new recipe
* Reintegrates machine specific gps configuration using overrides
(formerly specified in the main gpsd recipe)
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/gpsd')
-rw-r--r-- | recipes/gpsd/gpsd-device-config_0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/gpsd/gpsd-device-config_0.bb b/recipes/gpsd/gpsd-device-config_0.bb new file mode 100644 index 0000000000..1691c2edd8 --- /dev/null +++ b/recipes/gpsd/gpsd-device-config_0.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Configuration for machine specific gps devices" +SECTION = "console/network" +PRIORITY = "optional" +LICENSE = "GPL" +RDEPENDS_${PN} = "gpsd" +PR = "r0" + +SRC_URI_append_om-gta01 = " \ + file://restart_gllin.sh \ + file://gpsd-default \ + file://gps-hardware \ +" + +do_install_append_om-gta01() { + install -d ${D}${sysconfdir}/apm/resume.d + install -m 755 ${WORKDIR}/om-gta01/restart_gllin.sh ${D}/${sysconfdir}/apm/resume.d + install -d ${D}${sysconfdir}/init.d + install -m 755 ${WORKDIR}/om-gta01/gps-hardware ${D}${sysconfdir}/init.d + install -d ${D}/${sysconfdir}/default + install -m 0644 ${WORKDIR}/om-gta01/gpsd-default ${D}/${sysconfdir}/default/gpsd.default +} + +pkg_postinst_append_om-gta01() { + update-alternatives --install ${sysconfdir}/default/gpsd gpsd-defaults ${sysconfdir}/default/gpsd.default 50 +} + +pkg_postrm_append_om-gta01() { + update-alternatives --remove gpsd-defaults ${sysconfdir}/default/gpsd.default +} + +PACKAGE_ARCH = "${MACHINE_ARCH}" |