mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
* at least in initscripts it's consistent now (From OE-Core rev: 20d5effcf192d469883b5ac899cbd2340b71bd2c) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
516 B
Executable File
516 B
Executable File
#!/bin/sh
BEGIN INIT INFO
Provides: umountfs
Required-Start:
Required-Stop:
Default-Start:
Default-Stop: 0 6
Short-Description: Turn off swap and unmount all local file systems.
Description:
END INIT INFO
PATH=/sbin:/bin:/usr/sbin:/usr/bin
echo "Deactivating swap..." swapoff -a
We leave /proc mounted.
echo "Unmounting local filesystems..." grep -q /mnt/ram /proc/mounts && mount -o remount,ro /mnt/ram mount -o remount,ro /
- umount -f -a -r > /dev/null 2>&1
-
exit 0