mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
266 B
Executable File
266 B
Executable File
#! /bin/sh
umountfs Turn off swap and unmount all local filesystems.
PATH=/sbin:/bin:/usr/sbin:/usr/bin
echo "Deactivating swap..." swapoff -a
We leave /proc mounted.
echo "Unmounting local filesystems..." umount -f -a -r
- mount -o remount,ro /
-
exit 0