]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
modem-manager: support a defaults file in the init script
authorCarlos Santos <casantos@datacom.ind.br>
Sat, 21 Apr 2018 13:00:10 +0000 (10:00 -0300)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 22 Apr 2018 21:38:27 +0000 (23:38 +0200)
Sometimes it is useful to pass some parameters to ModemManager when it
starts (e.g. --log-level). Allow the user add a file with such flags in
a MODEMMANAGER_ARGS variable. This is simpler than overriding the whole
startup script (e.g. by means of a rootfs overlay).

Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Acked-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/modem-manager/S44modem-manager

index a3f5003aa159bf61eb464082cda27897fe030423..416c1e2ee6dec67923ceabdf871b66d2fbaa9e1f 100755 (executable)
@@ -3,13 +3,16 @@
 # Starts ModemManager
 #
 
+# Allow a few customizations from a config file
+test -r /etc/default/ModemManager && . /etc/default/ModemManager
+
 PIDFILE=/var/run/ModemManager.pid
 
 start() {
        printf "Starting ModemManager: "
        umask 077
        start-stop-daemon -S -q -b -m -p $PIDFILE \
-               --exec /usr/sbin/ModemManager
+               --exec /usr/sbin/ModemManager -- $MODEMMANAGER_ARGS
        [ $? = 0 ] && echo "OK" || echo "FAIL"
 }
 stop() {