diff --git a/src/core/main.c b/src/core/main.c index 4a78d751..191ba841 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -31,6 +31,8 @@ Literature dealing with the network protocols: #include #include #include +#include +#include /* 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" );