diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-03-24 00:48:06 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-03-24 00:48:06 +0000 |
commit | 8f00c84828bfdd708aa3dc299755300b99bf457b (patch) | |
tree | cfd5ac2f2bff771cbdf0031d6d2ebc35019148bd /src/core | |
parent | c06e6d063582a96982449b0238b0081ae8da0114 (diff) | |
download | ipxe-8f00c84828bfdd708aa3dc299755300b99bf457b.tar.gz |
[Settings] Add named setting for next-server
It's probably easier to have a named setting for next-server, rather
than to explain to people why they need to pretend it is option 175.3.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/settings.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/settings.c b/src/core/settings.c index b78e05e21..809779aea 100644 --- a/src/core/settings.c +++ b/src/core/settings.c @@ -1085,6 +1085,12 @@ struct named_setting basic_named_settings[] __named_setting = { .type = &setting_type_string, }, { + .name = "next-server", + .description = "TFTP server", + .tag = DHCP_EB_SIADDR, + .type = &setting_type_ipv4, + }, + { .name = "filename", .description = "Boot filename", .tag = DHCP_BOOTFILE_NAME, |