mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
base-files: Added support for swap configuration in /etc/config/fstab
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8947 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -20,6 +20,16 @@ do_mount() {
|
||||
}
|
||||
}
|
||||
|
||||
do_swapon() {
|
||||
local cfg="$1"
|
||||
config_get device "$cfg" device
|
||||
[ -n "device" ] || return 0
|
||||
config_get_bool enabled "$cfg" "enabled" '1'
|
||||
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapon ] && {
|
||||
/usr/sbin/swapon $device
|
||||
}
|
||||
}
|
||||
|
||||
do_unmount() {
|
||||
local cfg="$1"
|
||||
config_get target "$cfg" target
|
||||
@@ -30,13 +40,25 @@ do_unmount() {
|
||||
}
|
||||
}
|
||||
|
||||
do_swapoff() {
|
||||
local cfg="$1"
|
||||
config_get device "$cfg" device
|
||||
[ -n "device" ] || return 0
|
||||
config_get_bool enabled "$cfg" "enabled" '1'
|
||||
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapoff ] && {
|
||||
/usr/sbin/swapoff $device
|
||||
}
|
||||
}
|
||||
|
||||
start() {
|
||||
config_load fstab
|
||||
config_foreach do_mount mount
|
||||
config_foreach do_swapon swap
|
||||
}
|
||||
|
||||
stop() {
|
||||
config_load fstab
|
||||
config_foreach do_unmount mount
|
||||
config_foreach do_swapoff swap
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user