diff options
author | Michael Brown | 2017-03-06 13:25:20 +0100 |
---|---|---|
committer | Michael Brown | 2017-03-07 14:40:35 +0100 |
commit | e7ee2eda4badef6ee361f089768064ae737169ed (patch) | |
tree | 8e74668d89bc04e707143f0045ea7e67401a1f9a /src/interface/efi | |
parent | [block] Centralise SAN device abstraction (diff) | |
download | ipxe-e7ee2eda4badef6ee361f089768064ae737169ed.tar.gz ipxe-e7ee2eda4badef6ee361f089768064ae737169ed.tar.xz ipxe-e7ee2eda4badef6ee361f089768064ae737169ed.zip |
[block] Centralise "san-drive" setting
The concept of the SAN drive number is meaningful only in a BIOS
environment, where it represents the INT13 drive number (0x80 for the
first hard disk). We retain this concept in a UEFI environment to
allow for a simple way for iPXE commands to refer to SAN drives.
Centralise the concept of the default drive number, since it is shared
between all supported environments.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/interface/efi')
-rw-r--r-- | src/interface/efi/efi_block.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/interface/efi/efi_block.c b/src/interface/efi/efi_block.c index ab230943..ee26b37d 100644 --- a/src/interface/efi/efi_block.c +++ b/src/interface/efi/efi_block.c @@ -1055,7 +1055,6 @@ static int efi_block_boot ( unsigned int drive ) { return rc; } -PROVIDE_SANBOOT_INLINE ( efi, san_default_drive ); PROVIDE_SANBOOT ( efi, san_hook, efi_block_hook ); PROVIDE_SANBOOT ( efi, san_unhook, efi_block_unhook ); PROVIDE_SANBOOT ( efi, san_describe, efi_block_describe ); |