mirror of
https://git.yoctoproject.org/poky
synced 2026-07-26 07:07:08 +00:00
4efe1437dd
Avoids error messages on shutdown. Imported from OE commit 072cad0100fd828e7fee8f3fa3ade23e4306b394 (From OE-Core rev: 5188687660f5aa37014aac50c43e141f032455d7) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
517 B
Bash
Executable File
25 lines
517 B
Bash
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
|