blob: 80e91f0a9d22c34fc0b78d2f8b7424bff02955cb (
plain)
1
2
3
4
5
6
7
8
9
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
SRC_URI += "file://sw-device-hook"
do_install_append() {
# Install device-hook script for starting NMEA output on Sierra Wireless modems
install -d ${D}${sysconfdir}/gpsd
install -m 0755 ${WORKDIR}/sw-device-hook ${D}${sysconfdir}/gpsd/device-hook
}
|