summaryrefslogtreecommitdiffstats
path: root/loader/init.c
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-10-06 14:17:13 -0400
committerChris Lumens <clumens@redhat.com>2008-10-06 14:17:13 -0400
commit582976bedd6e3c0b4e6d9bfc4e2f5c88af6f39bc (patch)
tree06349930d635419ffd1785989db100517b96617b /loader/init.c
parentfbd8bb780c4d1c338392ad6d9ab0fe2584f5972d (diff)
Move starting HAL to after we've probed for hardware.
Diffstat (limited to 'loader/init.c')
-rw-r--r--loader/init.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/loader/init.c b/loader/init.c
index 8a3640437..8ffce1e2b 100644
--- a/loader/init.c
+++ b/loader/init.c
@@ -503,6 +503,7 @@ int main(int argc, char **argv) {
if (mount("/dev", "/dev", "tmpfs", 0, NULL))
fatal_error(1);
createDevices();
+ printf("done\n");
printf("starting udev...");
if (fork() == 0) {
execl("/sbin/udevd", "/sbin/udevd","--daemon",NULL);
@@ -716,14 +717,6 @@ int main(int argc, char **argv) {
sleep(2);
}
- /* HAL daemon */
- if (!testing) {
- if (fork() == 0) {
- execl("/sbin/hald", "/sbin/hald", "--use-syslog", NULL);
- exit(1);
- }
- }
-
/* Go into normal init mode - keep going, and then do a orderly shutdown
when: