<p>It seems like all that is necessary is to add a test for a secured laptop to allow this patch to go upstream, right?<br>
(This approach looks very similar to what I did in OLPC build 603 or so.)<br>
  --scott</p>
<div class="gmail_quote">On Aug 25, 2012 7:08 PM, "Jerry Vonau" <<a href="mailto:jvonau@shaw.ca">jvonau@shaw.ca</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On Sat, 2012-08-25 at 18:25 -0400, Walter Bender wrote:<br>
> File a ticket and someone may jump in to tackle it.<br>
><br>
> -walter<br>
><br>
<br>
see <a href="http://dev.laptop.org/ticket/11004" target="_blank">http://dev.laptop.org/ticket/11004</a><br>
<br>
<br>
> On Sat, Aug 25, 2012 at 3:24 PM, Martin Langhoff<br>
> <<a href="mailto:martin.langhoff@gmail.com">martin.langhoff@gmail.com</a>> wrote:<br>
> > On Sat, Aug 25, 2012 at 2:26 PM, C. Scott Ananian <<a href="mailto:cscott@laptop.org">cscott@laptop.org</a>> wrote:<br>
> >> Surely we can distinguish secured from unsecured laptops and allow<br>
> >> unsecured laptops to set the date?<br>
> ><br>
> > Sure. Nobody's done the UI work for that, Sugar-side.<br>
> ><br>
> >  - In all builds, hwclock is available from cli<br>
> >  - On 11.3.x  and earler builds you can install the appropriate gnome<br>
> > control panel.<br>
> >  - On 12.x.y builds, gnome control panels aren't so easy to make work,<br>
> > 'cause they need clutter.<br>
> ><br>
> > Also, we should run ntp by default, or at least ntpdate on an NM hook.<br>
<br>
We do that in Australia builds, need nptdate to be added to the image,<br>
setup /etc/sysconfig/ntpdate and the NM hook.<br>
<br>
# toggle setting the rtc<br>
sed -i -e "s/SYNC_HWCLOCK=no/SYNC_HWCLOCK=yes/" /etc/sysconfig/ntpdate<br>
<br>
# call ntpdate when connected<br>
cat << EOF > /etc/NetworkManager/dispatcher.d/10-ntpdate<br>
#!/bin/sh<br>
<br>
if [ "\$2" = "up" ]; then<br>
    if [ ! -e /tmp/ntpdate ]; then<br>
        touch /tmp/ntpdate<br>
        /sbin/service ntpdate restart || :<br>
    fi<br>
fi<br>
EOF<br>
chmod 755 /etc/NetworkManager/dispatcher.d/10-ntpdate<br>
<br>
Jerry<br>
<br>
<br>
_______________________________________________<br>
Devel mailing list<br>
<a href="mailto:Devel@lists.laptop.org">Devel@lists.laptop.org</a><br>
<a href="http://lists.laptop.org/listinfo/devel" target="_blank">http://lists.laptop.org/listinfo/devel</a><br>
</blockquote></div>