|
@@ -35,6 +35,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
35
|
35
|
#include <ipxe/shell.h>
|
36
|
36
|
#include <ipxe/features.h>
|
37
|
37
|
#include <ipxe/image.h>
|
|
38
|
+#include <ipxe/timer.h>
|
38
|
39
|
#include <usr/ifmgmt.h>
|
39
|
40
|
#include <usr/route.h>
|
40
|
41
|
#include <usr/dhcpmgmt.h>
|
|
@@ -468,7 +469,8 @@ static int shell_banner ( void ) {
|
468
|
469
|
/* Prompt user */
|
469
|
470
|
printf ( "\n" );
|
470
|
471
|
return ( prompt ( "Press Ctrl-B for the iPXE command line...",
|
471
|
|
- ( BANNER_TIMEOUT * 100 ), CTRL_B ) == 0 );
|
|
472
|
+ ( ( BANNER_TIMEOUT * TICKS_PER_SEC ) / 10 ),
|
|
473
|
+ CTRL_B ) == 0 );
|
472
|
474
|
}
|
473
|
475
|
|
474
|
476
|
/**
|