david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Use new minimal shell

This commit is contained in:
Michael Brown 2006-12-20 00:26:01 +00:00
parent 4919646fb9
commit 38ad706b08
1 changed files with 6 additions and 1 deletions

View File

@ -31,6 +31,8 @@ Literature dealing with the network protocols:
#include <gpxe/device.h>
#include <gpxe/heap.h>
#include <gpxe/netdevice.h>
#include <gpxe/shell.h>
#include <gpxe/shell_banner.h>
/* Linker symbols */
extern char _bss[], _ebss[];
@ -155,9 +157,12 @@ int main ( void ) {
call_init_fns ();
probe_devices();
if ( shell_banner() ) {
shell();
}
netdev = next_netdev ();
if ( netdev ) {
cmdl_start();
test_dhcp ( netdev );
} else {
printf ( "No network device found\n" );