1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-20 00:46:39 +02:00
meta-rpi-diya/recipes-diya/diya-overlay/files/boot-to-recovery
2023-08-02 09:51:33 +02:00

15 lines
279 B
Bash
Executable File

#! /bin/sh
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "$0 shall be run as root"
exit 1
fi
. /etc/profile
# prepare env for recovery boot
cat << EOF > /boot/extraconfig.txt
initramfs recovery-${MACHINE}.cpio.gz followkernel
EOF
echo "Rebooting to recovery mode"
reboot