Bugzilla – Bug 114667
hal not running during second installation stage
Last modified: 2005-09-05 14:30:15 UTC
During the second install stage, yast is started before hald. But we need hal for the hardware configuration. See bug 104676.
The start up script should be modified to start start hal if it isn't running.
I added the following patch to the second stage: Index: startup/Second-Stage/S06-services =================================================================== --- startup/Second-Stage/S06-services (revision 25301) +++ startup/Second-Stage/S06-services (working copy) @@ -42,4 +42,11 @@ fi fi +#============================================= +# 9.1) start hald +#--------------------------------------------- +if [ -x /usr/sbin/rchal ] ; then + /usr/sbin/rchal start +fi + please have a look at the patch i will check in the package now
It won't do. You have to start dbus before hal.
Just did a Beta4plus installation and ran into this bug again...
started dbus, see attached patch. Steffen please check and close if ok Index: startup/Second-Stage/S06-services =================================================================== --- startup/Second-Stage/S06-services (revision 25346) +++ startup/Second-Stage/S06-services (working copy) @@ -46,6 +46,7 @@ # 9.1) start hald #--------------------------------------------- if [ -x /usr/sbin/rchal ] ; then + /usr/sbin/rcdbus start /usr/sbin/rchal start fi
looks good