mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 14:47:46 +01:00
base-files: Update /etc/init.d/fstab with new location of swapon and swapoff (they moved from /sbin to /usr/sbin)
SVN-Revision: 11157
This commit is contained in:
parent
79aed699d7
commit
c715985c97
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
||||
PKG_NAME:=base-files
|
||||
PKG_RELEASE:=12
|
||||
PKG_RELEASE:=13
|
||||
|
||||
PKG_FILE_DEPEND:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
|
||||
|
||||
|
@ -25,8 +25,8 @@ do_swapon() {
|
||||
config_get device "$cfg" device
|
||||
[ -n "device" ] || return 0
|
||||
config_get_bool enabled "$cfg" "enabled" '1'
|
||||
[ "$enabled" -gt 0 ] && [ -x /sbin/swapon ] && {
|
||||
/sbin/swapon $device
|
||||
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapon ] && {
|
||||
/usr/sbin/swapon $device
|
||||
}
|
||||
}
|
||||
|
||||
@ -45,8 +45,8 @@ do_swapoff() {
|
||||
config_get device "$cfg" device
|
||||
[ -n "device" ] || return 0
|
||||
config_get_bool enabled "$cfg" "enabled" '1'
|
||||
[ "$enabled" -gt 0 ] && [ -x /sbin/swapoff ] && {
|
||||
/sbin/swapoff $device
|
||||
[ "$enabled" -gt 0 ] && [ -x /usr/sbin/swapoff ] && {
|
||||
/usr/sbin/swapoff $device
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user