From 241fb0f3cd3665ea8805b119989a50c76bcc8639 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 12 Apr 2005 22:44:02 +0000 Subject: [PATCH] Use dev's print_info method to print standardised information about the boot device. --- src/core/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/main.c b/src/core/main.c index 19802d9d..da1c58a6 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -183,6 +183,9 @@ int main ( void ) { continue; } + /* Print device info */ + print_info ( &dev ); + /* Load configuration (e.g. DHCP) */ if ( ! load_configuration ( &dev ) ) { /* DHCP failed */