diff options
author | John Klug <john.klug@multitech.com> | 2017-01-12 09:59:35 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-01-12 09:59:35 -0600 |
commit | ab413cb77eeb899c513f7b2cc63776ff8601446e (patch) | |
tree | 1828a1230984f63c38cbc46fad64ce1e54870d50 | |
parent | c4fa95a8241a7f807924b402febff22cfc1d6e9b (diff) | |
download | meta-mlinux-ab413cb77eeb899c513f7b2cc63776ff8601446e.tar.gz meta-mlinux-ab413cb77eeb899c513f7b2cc63776ff8601446e.tar.bz2 meta-mlinux-ab413cb77eeb899c513f7b2cc63776ff8601446e.zip |
Add gpsd_ubx_fixed script (does GPS have 3D fix?) to gpsd.
-rw-r--r-- | recipes-navigation/gpsd/gpsd_3.16.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-navigation/gpsd/gpsd_3.16.bb b/recipes-navigation/gpsd/gpsd_3.16.bb index cf4b578..f2a5c05 100644 --- a/recipes-navigation/gpsd/gpsd_3.16.bb +++ b/recipes-navigation/gpsd/gpsd_3.16.bb @@ -16,7 +16,7 @@ SRC_URI = "${SAVANNAH_GNU_MIRROR}/${BPN}/${BP}.tar.gz \ file://0005-suppress-text-in-binary.patch \ file://gpsd-default \ file://gpsd \ - file:://gpsd_ubx_fixed.sh \ + file://gpsd_ubx_fixed.sh \ file://60-gpsd.rules \ file://gpsd.service \ " @@ -89,8 +89,8 @@ do_install_append() { install -m 0755 ${WORKDIR}/gpsd ${D}/${sysconfdir}/init.d/ install -d ${D}/${sysconfdir}/default install -m 0644 ${WORKDIR}/gpsd-default ${D}/${sysconfdir}/default/gpsd.default - install -d ${D}/usr/sbin - install -m 0644 ${WORKDIR}/gpsd_ubx_fixed.sh ${D}/usr/sbin/gpsd_ubx_fixed + install -d ${D}${sbindir} + install -m 0755 ${WORKDIR}/gpsd_ubx_fixed.sh ${D}${sbindir}/gpsd_ubx_fixed # UDEV code assumed a USB GPS. @@ -133,7 +133,7 @@ SUMMARY_libgps = "C service library used for communicating with gpsd" FILES_libgps = "${libdir}/libgps.so.*" SUMMARY_gpsd-conf = "gpsd configuration files and init scripts" -FILES_gpsd-conf = "${sysconfdir}" +FILES_gpsd-conf = "${sysconfdir} ${sbindir}/gpsd_ubx_fixed" CONFFILES_gpsd-conf = "${sysconfdir}/default/gpsd.default" SUMMARY_gpsd-gpsctl = "Tool for tweaking GPS modes" |