summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2005-05-01 12:58:49 +0200
committerMichael Brown2005-05-01 12:58:49 +0200
commite1d6f3a8acfd61943650e0a79af606c1e3c184a4 (patch)
treeab51e302946eff767a9e3de042582840e0dced51 /src
parentDo not include etherboot.h (diff)
downloadipxe-e1d6f3a8acfd61943650e0a79af606c1e3c184a4.tar.gz
ipxe-e1d6f3a8acfd61943650e0a79af606c1e3c184a4.tar.xz
ipxe-e1d6f3a8acfd61943650e0a79af606c1e3c184a4.zip
Add NMB_RESOLVER
Diffstat (limited to 'src')
-rw-r--r--src/config.h1
-rw-r--r--src/core/config.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h
index 22f28fe5a..cbc78aaa2 100644
--- a/src/config.h
+++ b/src/config.h
@@ -71,6 +71,7 @@
*/
#define DNS_RESOLVER /* DNS resolver */
+#define NMB_RESOLVER /* NMB resolver */
/* @END general.h */
diff --git a/src/core/config.c b/src/core/config.c
index 20d8fa042..9d40b15e3 100644
--- a/src/core/config.c
+++ b/src/core/config.c
@@ -177,3 +177,7 @@ REQUIRE_OBJECT ( relocate );
#ifdef DNS_RESOLVER
REQUIRE_OBJECT ( dns );
#endif
+
+#ifdef NMB_RESOLVER
+REQUIRE_OBJECT ( nmb );
+#endif