

tjay
-
Posts
3 -
Joined
-
Last visited
Reputation Activity
-
tjay got a reaction from Gammel in SSD Unexpected_Power_Loss / POR_Recovery_Count on Reboot
Inspired by this topic https://forum.odroid.com/viewtopic.php?t=29069 I installed a shutdown script in /lib/systemd/system-shutdown:
#!/bin/bash case "$1" in kexec) # Do not park disks when switching kernels. ;; *) for disk in /sys/block/sd* ; do echo 1 > /sys/class/block/${disk##*/}/device/delete done sleep 1 ;; esac this works for my needs.
I don’t know if this problem is Helios64 specific, if not please move this topic to armbian common issues..
-
tjay got a reaction from gprovost in SSD Unexpected_Power_Loss / POR_Recovery_Count on Reboot
Inspired by this topic https://forum.odroid.com/viewtopic.php?t=29069 I installed a shutdown script in /lib/systemd/system-shutdown:
#!/bin/bash case "$1" in kexec) # Do not park disks when switching kernels. ;; *) for disk in /sys/block/sd* ; do echo 1 > /sys/class/block/${disk##*/}/device/delete done sleep 1 ;; esac this works for my needs.
I don’t know if this problem is Helios64 specific, if not please move this topic to armbian common issues..