X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=initscripts%2Fpl_sysinit;h=388010bf4e937e1a2e6908cec6a86115f7ccb0cc;hb=4b85e30580433a5d81c692170de638e09bd4cc22;hp=4f5d2acb7836ce32de8e84e3f5e35c2048a4a01b;hpb=b5b7d860157f6458aca2d69a30092ecd7fc5a616;p=bootcd.git diff --git a/initscripts/pl_sysinit b/initscripts/pl_sysinit index 4f5d2ac..388010b 100755 --- a/initscripts/pl_sysinit +++ b/initscripts/pl_sysinit @@ -1,5 +1,13 @@ #!/bin/sh +### xxx tmp debug + +set -x +echo pl_sysinit on console > /dev/console +exec > /dev/console +echo pl_sysinit plain + +### . /etc/init.d/pl_functions echo "" @@ -156,5 +164,22 @@ pl_network_sanity_checks echo "" echo $(date "+%H:%M:%S") "pl_sysinit: attempting to sync clock" /usr/sbin/ntpdate -b -t 10 -u pool.ntp.org + +# Handle /dev/rtc name change for newer kernels +# otherwise hwclock fails +baseMaj=`uname -r | cut -d "." -f1` +baseMin=`uname -r | cut -d "." -f2` +vers=`uname -r | cut -d "." -f3 | cut -d "-" -f1` +if [ $baseMaj -eq 2 ];then + if [ $baseMin -eq 6 ]; then + if [ $vers -ge 32 ];then + if [ "$(readlink /dev/rtc)" != "/dev/rtc0" ]; then + rm -f /dev/rtc + ln -s /dev/rtc0 /dev/rtc + fi + fi + fi +fi + # save ntp clock to hardware /sbin/hwclock --systohc --utc