mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
10 lines
111 B
Bash
Executable File
10 lines
111 B
Bash
Executable File
#!/bin/busybox sh
|
|
FILE=/mnt/tvout
|
|
if [ -f "$FILE" ]; then
|
|
rm "$FILE"
|
|
else
|
|
touch "$FILE"
|
|
fi
|
|
sync
|
|
reboot
|