Quote:
Originally Posted by Don_Karnage
also many time after a power off or between a reboot , my kobo glo ask me if i want to perform a factory reset
|
Solution 1: Do not launch Koreader (or any alternative reader) more than four times in a row without starting nickel in between.
Solution 2: Replace
Code:
/usr/local/Kobo/pickel should-factory-reset
if [ $? == 1 ] || [ $FS_CORRUPT == 1 ]; then
of rcS (you find it in the advboot package)
by
Code:
#/usr/local/Kobo/pickel should-factory-reset
if [ $FS_CORRUPT == 1 ]; then
Explanation: "pickel should-factory-reset" checks how many times the device has rebooted without nickel running successfully.