diff options
author | Luka Perkov <luka@openwrt.org> | 2013-12-09 11:30:14 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-12-09 11:30:14 +0000 |
commit | 3ceb6b3274d75fb5dc05b9eb42f2a98ee445f122 (patch) | |
tree | 30f8751c74750a210d9321522993e8fa17ffcd1c /package/base-files/files/lib/upgrade | |
parent | 18dd10190370853c3efc10b33711313a3ecb9a09 (diff) | |
download | upstream-3ceb6b3274d75fb5dc05b9eb42f2a98ee445f122.tar.gz upstream-3ceb6b3274d75fb5dc05b9eb42f2a98ee445f122.tar.bz2 upstream-3ceb6b3274d75fb5dc05b9eb42f2a98ee445f122.zip |
base-files: fix whitespaces
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 39006
Diffstat (limited to 'package/base-files/files/lib/upgrade')
-rw-r--r-- | package/base-files/files/lib/upgrade/common.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 6122ae7712..15ee70325b 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -38,7 +38,7 @@ supivot() { # <new_root> <old_root> mkdir -p $1$2 $1/proc $1/sys $1/dev $1/tmp $1/overlay && \ mount -o noatime,move /proc $1/proc && \ pivot_root $1 $1$2 || { - umount -l $1 $1 + umount -l $1 $1 return 1 } @@ -50,10 +50,10 @@ supivot() { # <new_root> <old_root> } run_ramfs() { # <command> [...] - install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount \ - /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd \ - /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" \ - /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump \ + install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount \ + /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd \ + /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" \ + /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump \ /bin/sleep /bin/zcat /usr/bin/bzcat /usr/bin/printf /usr/bin/wc install_bin /sbin/mtd @@ -94,7 +94,7 @@ kill_remaining() { # [ <signal> ] local cmdline read cmdline < /proc/$pid/cmdline - # Skip kernel threads + # Skip kernel threads [ -n "$cmdline" ] || continue case "$name" in |