mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-26 19:31:06 +02:00
[package] base-files: localize variable in do_move_devtmpfs(), remove extra temporary variable and shorten conditional
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22380 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
cb108e4d04
commit
6a91be99c7
@ -3,13 +3,10 @@
|
||||
# Copyright (C) 2010 Vertical Communications
|
||||
|
||||
do_move_devtmpfs() {
|
||||
foo="`grep devtmpfs /proc/mounts`"
|
||||
x=${foo#* }
|
||||
x=${x%% *}
|
||||
local mnt="$(grep devtmpfs /proc/mounts)"
|
||||
mnt="${mnt#* }"; mnt="${mnt%% *}"
|
||||
|
||||
if [ "$x" != "/dev" ] ; then
|
||||
mount -o move "$x" /dev
|
||||
fi
|
||||
[ "$mnt" = "/dev" ] || mount -o move "$mnt" /dev
|
||||
}
|
||||
|
||||
do_mount_devfs() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user