ublox-gsm-config: Add empty apn.conf as placeholder

Should help avoiding errors when manually writing this file.

BugzID: 60832
This commit is contained in:
Alexandre Bard 2020-01-06 10:09:44 +01:00
parent a61b878ee0
commit ef5ab78de0
2 changed files with 17 additions and 2 deletions

View File

@ -0,0 +1,15 @@
#
# Define a private APN to be used by the modem
# This file is part of ublox-gsm-config service
#
# Required fields:
# apn: Name of the access point
# user: Username used to authenticate on APN
# password: Password used to authenticate on APN
#
[default]
apn=
user=
password=

View File

@ -16,6 +16,7 @@ SRC_URI = " \
file://ublox-gsm-config.py \
file://modem-config-dump.py \
file://sim.conf \
file://apn.conf \
"
S = "${WORKDIR}"
@ -42,7 +43,6 @@ do_install () {
install -d ${D}/etc
install -m 0644 sim.conf ${D}/etc/
install -m 0644 apn.conf ${D}/etc/
}