summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dhcp.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-12-11 14:48:26 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-12-11 14:48:26 +0000
commitff6c12f0ceb79027381fcaa32db851072f2e8387 (patch)
treef7311b8decf6686323f5c7de4d79ef087c8107f6 /mdk-stage1/dhcp.c
parentab387f437171d69c39fa5c9754ff8fcdbc04adf5 (diff)
downloaddrakx-ff6c12f0ceb79027381fcaa32db851072f2e8387.tar
drakx-ff6c12f0ceb79027381fcaa32db851072f2e8387.tar.gz
drakx-ff6c12f0ceb79027381fcaa32db851072f2e8387.tar.bz2
drakx-ff6c12f0ceb79027381fcaa32db851072f2e8387.tar.xz
drakx-ff6c12f0ceb79027381fcaa32db851072f2e8387.zip
support "filename" in DHCP answers and give this
to stage2 as --kickstart parameter
Diffstat (limited to 'mdk-stage1/dhcp.c')
-rw-r--r--mdk-stage1/dhcp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mdk-stage1/dhcp.c b/mdk-stage1/dhcp.c
index 44877fd8a..ef7bd6a29 100644
--- a/mdk-stage1/dhcp.c
+++ b/mdk-stage1/dhcp.c
@@ -27,6 +27,7 @@
#include <stdlib.h>
#include <unistd.h>
+#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
@@ -207,6 +208,9 @@ static void parse_reply(struct bootp_request * breq, struct interface_info * int
unsigned char * chptr;
unsigned char option, length;
+ if (breq->bootfile && strlen(breq->bootfile) > 0)
+ stage2_kickstart = strdup(breq->bootfile);
+
memcpy(&intf->ip, &breq->yiaddr, 4);
chptr = breq->vendor;