|
From: Nuno L. <lu...@nl...> - 2004-10-02 07:00:30
|
Eric S. Johansson, dando pulos de alegria, escreveu : > daemon: exit code 80008401 > daemon: error - CO_RC_ERROR_ERROR, line 33, file id 0 > esj@speaker /cygdrive/c/colinux > > what am I doing wrong. This error is related with not being able to open some file. [...] > <initrd path="\DosDevices\c:\coLinux\initrd.gz" /> [...] > <image path="\DosDevices\c:\coLinux\vmlinux" /> [...] Replace this with just: <initrd path="initrd.gz" /> <image path="vmlinux" /> The "\DosDevices\" prefix is only used for kernel code that needs to load some file, but I don't think it can be used with user code. The block devices are loaded in the driver (kernel mode), but the initrd.gz and vmlinux are loaded in user mode (by the daemon). You can still use an absolute in the initrd and image config, but no need (and I think is your problem) for the "\DosDevices\" prefix. If it gives a different error after this change, try to replace <bootparams>root=/dev/cobd0</bootparams> by <bootparams>root=/dev/cobd/0</bootparams> This is just a guess, so if it works let us know. Regards, ~Nuno Lucas |