I followed this tutorial to setup the RTC for the Rpi.
http://learn.adafruit.com/adding-a-real ... t-rtc-time
(I remove the pullups)
It was pretty successful and I got the hwclock -r to display the time from the hw clock.
As I was moving on to my next phase and while rebooting the Rpi, I noticed the line saying
Loading kernel module rtc-1307
FATAL: Module rtc-1307 not found.
and when I tried sudo hwclock -r, it says
hwclock: Cannot access the Hardware Clock via any known method.
hwclock: Use the --debug option to see the details of our search for an access method.
I checked i2cdetect -y 1, but I'm getting the address 68.
What I did was I tried doing the adafruit tutorial and test hwclock -r again.
So I remove the "rtc-1307" and "echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device" lines from /etc/modules and /etc/rc.local respectively. I also modprobe -r the rtc_ds1307 under lsmod.
After that I rebooted.
i2cdetect detects address 68, then
sudo modprobe rtc-ds1307, then
sudo bash, then
echo ds1307 0x68 > /sys/class/i2c-adapter/i2c-1/new_device, then
when I hit hwclock -r, I still get
hwclock: Cannot access the Hardware Clock via any known method.
hwclock: Use the --debug option to see the details of our search for an access method.
I think I'm missing something, but I can't figure it out. So far I didn't find any solution and reference on Google so I tried posting here.
Btw, why did the tutorial added just only "rtc-1307" to /etc/modules instead of "rtc-ds1307"?
Just curious, but rtc-1307 worked for me when I didn't have my current problem.
It's my first post

Thanks,