2022-11-15 12:25:32 -05:00
|
|
|
From 35173fa04d0116ba30a86dc1a19f859f2be14a24 Mon Sep 17 00:00:00 2001
|
2022-05-29 14:18:27 -04:00
|
|
|
From: "Bruce A. Johnson" <waterfordtrack@gmail.com>
|
|
|
|
Date: Wed, 22 Dec 2021 14:24:02 -0500
|
2022-11-15 12:25:32 -05:00
|
|
|
Subject: [PATCH] core: switch bash shell scripts to use /bin/sh for use
|
2022-05-29 14:18:27 -04:00
|
|
|
w/Busybox.
|
|
|
|
|
|
|
|
Fixes https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/483
|
2022-11-15 12:25:32 -05:00
|
|
|
|
|
|
|
%% original patch: 0001-core-switch-bash-shell-scripts-to-use-bin-sh-for-use.patch
|
2022-05-29 14:18:27 -04:00
|
|
|
---
|
2022-11-15 12:25:32 -05:00
|
|
|
data/dispatcher-fcc-unlock/105b | 2 +-
|
|
|
|
data/dispatcher-fcc-unlock/1199 | 2 +-
|
|
|
|
data/dispatcher-fcc-unlock/1eac | 2 +-
|
|
|
|
test/mmcli-test-sms | 2 +-
|
|
|
|
tools/tests/test-wrapper.sh.in | 2 +-
|
2022-05-29 14:18:27 -04:00
|
|
|
5 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
|
2022-11-15 12:25:32 -05:00
|
|
|
diff --git a/data/dispatcher-fcc-unlock/105b b/data/dispatcher-fcc-unlock/105b
|
|
|
|
index 444bd51f..772c90f4 100644
|
|
|
|
--- a/data/dispatcher-fcc-unlock/105b
|
|
|
|
+++ b/data/dispatcher-fcc-unlock/105b
|
2022-05-29 14:18:27 -04:00
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/bin/bash
|
|
|
|
+#!/bin/sh
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# 2021 Aleksander Morgado <aleksander@aleksander.es>
|
2022-11-15 12:25:32 -05:00
|
|
|
diff --git a/data/dispatcher-fcc-unlock/1199 b/data/dispatcher-fcc-unlock/1199
|
|
|
|
index 83ab2c9e..6dbf8d1b 100644
|
|
|
|
--- a/data/dispatcher-fcc-unlock/1199
|
|
|
|
+++ b/data/dispatcher-fcc-unlock/1199
|
2022-05-29 14:18:27 -04:00
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/bin/bash
|
|
|
|
+#!/bin/sh
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# 2021 Aleksander Morgado <aleksander@aleksander.es>
|
2022-11-15 12:25:32 -05:00
|
|
|
diff --git a/data/dispatcher-fcc-unlock/1eac b/data/dispatcher-fcc-unlock/1eac
|
|
|
|
index 1a048dc8..44ce46d7 100644
|
|
|
|
--- a/data/dispatcher-fcc-unlock/1eac
|
|
|
|
+++ b/data/dispatcher-fcc-unlock/1eac
|
2022-05-29 14:18:27 -04:00
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/bin/bash
|
|
|
|
+#!/bin/sh
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# 2021 Aleksander Morgado <aleksander@aleksander.es>
|
|
|
|
diff --git a/test/mmcli-test-sms b/test/mmcli-test-sms
|
|
|
|
index 18e0a7b4..7136ee0d 100755
|
|
|
|
--- a/test/mmcli-test-sms
|
|
|
|
+++ b/test/mmcli-test-sms
|
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/bin/bash
|
|
|
|
+#!/bin/sh
|
|
|
|
|
|
|
|
print_usage () {
|
|
|
|
echo "usage: $0 [MODEM INDEX] [all|ucs2|gsm7|data] [NUMBER]"
|
|
|
|
diff --git a/tools/tests/test-wrapper.sh.in b/tools/tests/test-wrapper.sh.in
|
|
|
|
index d64ea4cb..fcdb56de 100644
|
|
|
|
--- a/tools/tests/test-wrapper.sh.in
|
|
|
|
+++ b/tools/tests/test-wrapper.sh.in
|
|
|
|
@@ -1,4 +1,4 @@
|
|
|
|
-#!/bin/bash
|
|
|
|
+#!/bin/sh
|
|
|
|
|
|
|
|
# For debugging behavior of test-modemmanager-service.py, you can modify
|
|
|
|
# this line to add --log-file option
|
|
|
|
--
|
2022-11-15 12:25:32 -05:00
|
|
|
2.35.3
|
2022-05-29 14:18:27 -04:00
|
|
|
|