X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fnetwork.c;h=1801710773b975106e43d6592de4a85d8ad55322;hp=36807f0aecbd9881ef015b1a182f2091aabac60e;hb=b90b84b36d01f6663a79d9467a37cd9d6f6a68e7;hpb=a51beb34277a01ca577c35d6a66ceab38e6de67c diff --git a/discover/network.c b/discover/network.c index 36807f0..1801710 100644 --- a/discover/network.c +++ b/discover/network.c @@ -228,7 +228,6 @@ static void configure_interface_dhcp(struct interface *interface) const char *argv[] = { pb_system_apps.udhcpc, "-R", - "-n", "-f", "-O", "pxeconffile", "-O", "pxepathprefix", @@ -245,7 +244,7 @@ static void configure_interface_dhcp(struct interface *interface) if (platform && platform->dhcp_arch_id != 0xffff) snprintf(id, sizeof(id), "0x5d:%04x", platform->dhcp_arch_id); else - argv[12] = NULL; + argv[11] = NULL; process = process_create(interface);