On Sun, 20 Jun 2010 23:25:14 +0100, Will wrote
> Just wondering if it is possible to change the default key sequence,
> from Ctrl + B, to something like "B". Failing that can you enter the
> command line interface using a script? I am using GPXE in an EFI
> environment and have read that it doesn't interpret presses of the Ctrl
> key correctly, so I am hoping that I can i fix my inability to get to
> the command line.
> 
> _______________________________________________
> gPXE mailing list
> [email protected]
> http://etherboot.org/mailman/listinfo/gpxe
Try modiy following line in src/hci/shell_banner.c:

if ( key == CTRL_B )

to

if ( key == 'B' )

or any other key you would like.

Guo-Fu Tseng

_______________________________________________
gPXE mailing list
[email protected]
http://etherboot.org/mailman/listinfo/gpxe

Reply via email to