mirror of
https://github.com/ipxe/ipxe
synced 2026-04-16 03:00:10 +03:00
Split bootsector execution code out into bootsector.c.
Added basic El Torito ISO image boot capability
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#ifndef _BOOTSECTOR_H
|
||||
#define _BOOTSECTOR_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* x86 bootsector image format
|
||||
*/
|
||||
|
||||
extern int call_bootsector ( unsigned int segment, unsigned int offset,
|
||||
unsigned int drive );
|
||||
|
||||
#endif /* _BOOTSECTOR_H */
|
||||
@@ -37,6 +37,8 @@ struct block_device;
|
||||
#define INT13_EXTENDED_WRITE 0x43
|
||||
/** Get extended drive parameters */
|
||||
#define INT13_GET_EXTENDED_PARAMETERS 0x48
|
||||
/** Get CD-ROM status / terminate emulation */
|
||||
#define INT13_CDROM_STATUS_TERMINATE 0x4b
|
||||
|
||||
/** @} */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user