summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch')
-rw-r--r--meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch b/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch
new file mode 100644
index 0000000000..6f402ddb6d
--- /dev/null
+++ b/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch
@@ -0,0 +1,53 @@
1Check if symlinks are valid
2
3When using root option and $initd/$bn is a symlink, the script would fail because
4the symlink points to a path on target. For example:
5
6/path/to/target/rootfs/etc/init.d/syslog -> /etc/init.d/syslog.busybox
7
8Hence, [ -f /path/to/target/rootfs/etc/init.d/syslog ] condition would return
9false.
10
11This patch adds the posibility to check whether the file the symlink points to
12actually exists in rootfs path and then continue.
13
14Upstream-Status: Pending
15
16Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
17
18Index: git/update-rc.d
19===================================================================
20--- git.orig/update-rc.d 2013-01-16 12:12:58.349814356 +0200
21+++ git/update-rc.d 2013-01-16 13:02:42.490864939 +0200
22@@ -147,13 +147,29 @@
23 bn=$1
24 shift
25
26+sn=$initd/$bn
27+if [ -L "$sn" -a -n "$root" ]; then
28+ readlink=$(which readlink)
29+
30+ if [ -n "$readlink" ]; then
31+ sn=$($readlink "$sn")
32+ case "$sn" in
33+ /*) sn=${root}${sn} ;;
34+ *) sn=$initd/$sn ;;
35+ esac
36+ else
37+ echo "update-rc.d: readlink tool not present, cannot check whether \
38+ $sn symlink points to a valid file." >&2
39+ fi
40+fi
41+
42 if [ $1 != "remove" ]; then
43- if [ ! -f "$initd/$bn" ]; then
44+ if [ ! -f "$sn" ]; then
45 echo "update-rc.d: $initd/$bn: file does not exist" >&2
46 exit 1
47 fi
48 else
49- if [ -f "$initd/$bn" ]; then
50+ if [ -f "$sn" ]; then
51 if [ $force -eq 1 ]; then
52 echo "update-rc.d: $initd/$bn exists during rc.d purge (continuing)" >&2
53 else