]> git.pld-linux.org Git - packages/busybox.git/blame - busybox-dhcp.patch
- 1.01
[packages/busybox.git] / busybox-dhcp.patch
CommitLineData
33666394
AM
1diff -urN busybox-1.00-pre10.org/networking/udhcp/options.c busybox-1.00-pre10/networking/udhcp/options.c
2--- busybox-1.00-pre10.org/networking/udhcp/options.c 2004-06-05 20:24:43.698887752 +0200
3+++ busybox-1.00-pre10/networking/udhcp/options.c 2004-06-05 20:26:15.241971088 +0200
4@@ -27,8 +27,8 @@
5 {"hostname", OPTION_STRING | OPTION_REQ, 0x0c},
6 {"bootsize", OPTION_U16, 0x0d},
7 {"domain", OPTION_STRING | OPTION_REQ, 0x0f},
8- {"swapsvr", OPTION_IP, 0x10},
9- {"rootpath", OPTION_STRING, 0x11},
10+ {"swapsvr", OPTION_IP | OPTION_REQ, 0x10},
11+ {"rootpath", OPTION_STRING | OPTION_REQ, 0x11},
12 {"ipttl", OPTION_U8, 0x17},
13 {"mtu", OPTION_U16, 0x1a},
14 {"broadcast", OPTION_IP | OPTION_REQ, 0x1c},
15@@ -39,8 +39,8 @@
16 {"dhcptype", OPTION_U8, 0x35},
17 {"serverid", OPTION_IP, 0x36},
18 {"message", OPTION_STRING, 0x38},
19- {"tftp", OPTION_STRING, 0x42},
20- {"bootfile", OPTION_STRING, 0x43},
21+ {"tftp", OPTION_STRING | OPTION_REQ, 0x42},
22+ {"bootfile", OPTION_STRING | OPTION_REQ, 0x43},
23 {"", 0x00, 0x00}
24 };
25
This page took 0.066621 seconds and 4 git commands to generate.