kernel 2.6.30.4 RTC 的修改 开发板s3c2410

RTC 驱动移植
gedit arch/arm/plat-s3c24xx/common-smdk.c
static struct platform_device __initdata *smdk_devs[] = {
    &s3c_device_nand,
    &smdk_led4,
    &smdk_led5,
    &smdk_led6,
    &smdk_led7,
    &s3c_device_dm9k,
    &s3c_device_rtc,
};
验证:
date 设置时间,注意格式
 # date -s "2010-01-28 09:55"
hwclock 同步时钟
 # hwclock -w
 # hwclock 显示时钟
出现错误:hwclock: can't open '/dev/misc/rtc': No such file or directory
解决:去文件系统的 /dev 目录,执行命令: mknod rtc c 254 0
至此 RTC 完成

你可能感兴趣的:(c,Date,struct,File,2010)