mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-13 08:08:51 +01:00
21 lines
340 B
Bash
Executable File
21 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Notify system, reboot in progress
|
|
REBOOTING_FILE="/run/rebooting"
|
|
touch $REBOOTING_FILE
|
|
|
|
# Notif fullscreen "Shutting down"
|
|
notif_set 0 "^^^^^^^^ SHUTTING DOWN...^^^^^^^^"
|
|
|
|
# Shutdown amp
|
|
start_audio_amp 0 >/dev/null 2>&1
|
|
|
|
# Force Read Only
|
|
ro
|
|
|
|
# Unmount writeable partition to force
|
|
umount -r /mnt
|
|
|
|
# Poweroff
|
|
poweroff
|