First run stuck with ssh key generation / Cubietruck RTC bug


Vadim Kovzunov
 Share

1 1

Recommended Posts

Armbian is a community driven open source project. Do you like to contribute your code?

Solution(s) - pick one:

 

- Edit /etc/init.d/armhwinfo and add this:

# fix for eth0 no brought up
if [ "$(hwclock -r)" == "" ]; then 
echo -e "[\e[0;32m ok \x1B[0m] Fixing RTC and reloading eth0"
date -s "2015-01-01 10:00:00"
hwclock -w
ifup eth0
fi

- Replace it with this content

 

- Wait for new image release (4.3)

 

 

Please try if you run into problems after this fix. 

Link to post
Share on other sites

Ah, sorry...

 

Wheezy with kernel 4.1.6 does work.

 

... when you use Igor's patch:

 

# fix for eth0 no brought up

if [ "$(hwclock -r)" == "" ]; then
echo -e "[\e[0;32m ok \x1B[0m] Fixing RTC and reloading eth0"
date -s "2015-01-01 10:00:00"
hwclock -w
service networking restart

fi

Link to post
Share on other sites

Guest
This topic is now closed to further replies.
 Share

1 1