diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2015-07-03 14:32:58 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-08 00:01:21 +0100 |
commit | 86fc0b2e3a79b5f0e50ec8d6f46794ae37a10858 (patch) | |
tree | f59b965d65d5ab0ea0c73c908a7396b426788f6a /meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch | |
parent | eb29cea7296ca62e96fdcfadefcca03b2383ff85 (diff) | |
download | poky-86fc0b2e3a79b5f0e50ec8d6f46794ae37a10858.tar.gz |
lsbinitscripts: avoid exit 1 in functions script
If 'rc.debug' is not in kernel parameters, the functions script would
exit 1 which causes other init scripts that source it exit 1. This is
not what we want.
[YOCTO #7948]
(From OE-Core rev: 080a7fbd876274410107732f175037fcea4d53ca)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch')
-rw-r--r-- | meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch b/meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch new file mode 100644 index 0000000000..0809c9be97 --- /dev/null +++ b/meta/recipes-extended/lsb/lsbinitscripts/0001-functions-avoid-exit-1-which-causes-init-scripts-to-.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Subject: functions: avoid exit 1 which causes init scripts to fail | ||
4 | |||
5 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
6 | --- | ||
7 | rc.d/init.d/functions | 2 +- | ||
8 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
9 | |||
10 | diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions | ||
11 | index 6850046..11223f7 100644 | ||
12 | --- a/rc.d/init.d/functions | ||
13 | +++ b/rc.d/init.d/functions | ||
14 | @@ -597,5 +597,5 @@ if [ "$_use_systemctl" = "1" ]; then | ||
15 | fi | ||
16 | fi | ||
17 | |||
18 | -strstr "$(cat /proc/cmdline)" "rc.debug" && set -x | ||
19 | +strstr "$(cat /proc/cmdline)" "rc.debug" && set -x || true | ||
20 | |||
21 | -- | ||
22 | 2.1.0 | ||
23 | |||