diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-04-10 18:19:05 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-04-10 18:19:05 +0000 |
commit | 1937b39079021e0ae74f354e0ef2692ccdd5b664 (patch) | |
tree | 3dd7bb913318652865e17d2e520092700ea40635 /src | |
parent | f06e8c9707ed93d9dd98bdbfc498ddf86d8d13c8 (diff) | |
download | ipxe-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')
-rw-r--r-- | src/core/config.c | 7 |
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 |