mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 21:32:12 +02: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