From ea451fb403b23d1b6d385032837883d4f6c2ab5a Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Thu, 28 Feb 2008 15:21:40 +0000 Subject: make dhcp the first choice (instead of static) in the network type menu --- mdk-stage1/network.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mdk-stage1/network.c') diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index 17dc90fce..1729ff5ff 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -400,8 +400,8 @@ static void static_ip_callback(char ** strings) static enum return_type setup_network_interface(struct interface_info * intf) { enum return_type results; - char * bootprotos[] = { "Static", "DHCP", "ADSL", NULL }; - char * bootprotos_auto[] = { "static", "dhcp", "adsl" }; + char * bootprotos[] = { "DHCP", "Static", "ADSL", NULL }; + char * bootprotos_auto[] = { "dhcp", "static", "adsl" }; char * choice; results = ask_from_list_auto("Please select your network connection type.", bootprotos, &choice, "network", bootprotos_auto); -- cgit v1.2.1