david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Added DNS resolver configuration option.

This commit is contained in:
Michael Brown 2005-04-30 14:39:21 +00:00
parent 0780ecf1b6
commit 6cd0fa5807
2 changed files with 18 additions and 0 deletions

View File

@ -64,6 +64,16 @@
/* @END isa.h */
/* @BEGIN general.h
*
* Name resolution modules
*
*/
#define DNS_RESOLVER /* DNS resolver */
/* @END general.h */
/* @BEGIN general.h
*
* Obscure configuration options

View File

@ -169,3 +169,11 @@ REQUIRE_OBJECT ( pc_kbd );
#ifdef RELOCATE
REQUIRE_OBJECT ( relocate );
#endif
/*
* Drag in any required resolvers
*
*/
#ifdef DNS_RESOLVER
REQUIRE_OBJECT ( dns_resolver );
#endif