blob: 3388e8b61160796719977f7039c58ff7d2281c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- busybox-1.00-pre2/util-linux/hwclock.c~silence-hwclock
+++ busybox-1.00-pre2/util-linux/hwclock.c
@@ -114,12 +114,8 @@
bb_perror_msg_and_die ( "Could not access RTC" );
}
- printf ( "1\n" );
-
tm = *( utc ? gmtime ( &t ) : localtime ( &t ));
tm. tm_isdst = 0;
-
- printf ( "2\n") ;
if ( ioctl ( rtc, RTC_SET_TIME, &tm ) < 0 )
bb_perror_msg_and_die ( "Could not set the RTC time" );
|