-
Boot parameters
Hi
At startup, after pressing 'c', I get a list like this :
boot device :
processor number :
host name :
file name :
inet on ethernet (e) :
inet on backplane (b):
....
Is there a function in VxWorks that can return the values set for each
line?
Alain
--
_________________________________________________
Alain Migeon
Please reverse alain and migeon for replying.
-
Re: Boot parameters
On Sep 7, 12:03 pm, Alain Migeon <migeon.al...@tdcspace.dk> wrote:[color=blue]
> Hi
>
> At startup, after pressing 'c', I get a list like this :
>
> boot device :
> processor number :
> host name :
> file name :
> inet on ethernet (e) :
> inet on backplane (b):
> ...
>
> Is there a function in VxWorks that can return the values set for each
> line?
>
> Alain
>
> --
> _________________________________________________
> Alain Migeon
> Please reverse alain and migeon for replying.[/color]
#include <sysLib.h>
#include <bootLib.h>
BOOT_PARAMS bootparams;
bootStringToStruct(sysBootLine, &bootparams);
-
Re: Boot parameters
In article <1189586625.796758.200440@y42g2000hsy.googlegroups.com>,
[email]anders.forsmoo@saabgroup.com[/email] says...
[color=blue]
> #include <sysLib.h>
> #include <bootLib.h>
>
> BOOT_PARAMS bootparams;
>
> bootStringToStruct(sysBootLine, &bootparams);[/color]
Many thanks.
Alain
--
_________________________________________________
Alain Migeon
Please reverse alain and migeon for replying.