diff options
Diffstat (limited to 'meta')
-rwxr-xr-x | meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh b/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh index 6b3830883b..0ff0e1af7f 100755 --- a/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh +++ b/meta/recipes-core/initscripts/initscripts-1.0/populate-volatile.sh | |||
@@ -42,7 +42,7 @@ create_file() { | |||
42 | # but these failures should not be logged to make sure the do_rootfs | 42 | # but these failures should not be logged to make sure the do_rootfs |
43 | # process doesn't fail. This does no harm, as this script will | 43 | # process doesn't fail. This does no harm, as this script will |
44 | # run on target to set up the correct files and directories. | 44 | # run on target to set up the correct files and directories. |
45 | eval $EXEC > /dev/null 2>&1 & | 45 | eval $EXEC > /dev/null 2>&1 |
46 | fi | 46 | fi |
47 | } | 47 | } |
48 | } | 48 | } |
@@ -87,7 +87,7 @@ link_file() { | |||
87 | else | 87 | else |
88 | # For the same reason with create_file(), failures should | 88 | # For the same reason with create_file(), failures should |
89 | # not be logged. | 89 | # not be logged. |
90 | eval $EXEC > /dev/null 2>&1 & | 90 | eval $EXEC > /dev/null 2>&1 |
91 | fi | 91 | fi |
92 | } | 92 | } |
93 | 93 | ||
@@ -156,7 +156,7 @@ apply_cfgfile() { | |||
156 | [ "${TTYPE}" = "l" ] && { | 156 | [ "${TTYPE}" = "l" ] && { |
157 | TSOURCE="$TLTARGET" | 157 | TSOURCE="$TLTARGET" |
158 | [ "${VERBOSE}" != "no" ] && echo "Creating link -${TNAME}- pointing to -${TSOURCE}-." | 158 | [ "${VERBOSE}" != "no" ] && echo "Creating link -${TNAME}- pointing to -${TSOURCE}-." |
159 | link_file "${TSOURCE}" "${TNAME}" & | 159 | link_file "${TSOURCE}" "${TNAME}" |
160 | continue | 160 | continue |
161 | } | 161 | } |
162 | 162 | ||