ublox-config: Remove extension from rootfs binary

BugzID: 56371
This commit is contained in:
Alexandre Bard 2019-04-01 12:25:52 +02:00
parent 66fe76d92f
commit 7ee9cc8cce
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ Before=ModemManager.service
[Service]
Type=oneshot
ExecStart=/bin/bash -c "ifconfig wwan0 && { echo 'already configured'; exit 0; };/usr/bin/ublox-config.py;"
ExecStart=/bin/bash -c "ifconfig wwan0 && { echo 'already configured'; exit 0; };/usr/bin/ublox-config;"
[Install]
WantedBy=ModemManager.service

View File

@ -33,6 +33,6 @@ do_install () {
install -m 0644 ublox-config.service ${D}${systemd_unitdir}/system/
install -d ${D}/usr/bin
install -m 0755 ublox-config.py ${D}/usr/bin
install -m 0755 ublox-config.py ${D}/usr/bin/ublox-config
}