diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-09-04 01:26:48 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-09-05 14:11:01 +0100 |
commit | e6427b7ee117ea4af0812bb13b57999bccd8e058 (patch) | |
tree | d92dd9b3ec03b78b77919dc5cd364b95d3cede4d /src/config/config.c | |
parent | 03f0c23f8b1a60575f788dd1b9d4ea47debf2345 (diff) | |
download | ipxe-e6427b7ee117ea4af0812bb13b57999bccd8e058.tar.gz |
[sdi] Add support for SDI images
Add support (disabled by default) for booting .sdi images as used by
Windows XP Embedded.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/config.c')
-rw-r--r-- | src/config/config.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index 202da7266..78ae93c43 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -181,6 +181,9 @@ REQUIRE_OBJECT ( comboot_resolv ); #ifdef IMAGE_EFI REQUIRE_OBJECT ( efi_image ); #endif +#ifdef IMAGE_SDI +REQUIRE_OBJECT ( sdi ); +#endif /* * Drag in all requested commands |