aboutsummaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2005-04-10 18:19:05 +0000
committerMichael Brown <mcb30@etherboot.org>2005-04-10 18:19:05 +0000
commit1937b39079021e0ae74f354e0ef2692ccdd5b664 (patch)
tree3dd7bb913318652865e17d2e520092700ea40635 /src/core
parentf06e8c9707ed93d9dd98bdbfc498ddf86d8d13c8 (diff)
downloadipxe-1937b39079021e0ae74f354e0ef2692ccdd5b664.tar.gz
Drag in relocate unless NORELOCATE is defined, since it's now called
only via the initialisation function table.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/config.c b/src/core/config.c
index d85ca242d..9407df18b 100644
--- a/src/core/config.c
+++ b/src/core/config.c
@@ -208,3 +208,10 @@ REQUIRE_OBJECT ( btext );
REQUIRE_OBJECT ( pc_kbd );
#endif
+/*
+ * Drag in relocate.o if required
+ */
+
+#ifndef NORELOCATE
+REQUIRE_OBJECT ( relocate );
+#endif