mirror of
https://github.com/clearlinux/kvmtool.git
synced 2026-08-29 02:35:39 +00:00
b3594ec7e0
Instead of calling various BIOS routines from kvm.c better to have all BIOS specifics sit in bios.c. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
17 lines
323 B
C
17 lines
323 B
C
/*
|
|
* Linux boot protocol specifics
|
|
*/
|
|
|
|
#ifndef BOOT_PROTOCOL_H_
|
|
#define BOOT_PROTOCOL_H_
|
|
|
|
/*
|
|
* The protected mode kernel part of a modern bzImage is loaded
|
|
* at 1 MB by default.
|
|
*/
|
|
#define BZ_DEFAULT_SETUP_SECTS 4
|
|
#define BZ_KERNEL_START 0x100000UL
|
|
#define INITRD_START 0x1000000UL
|
|
|
|
#endif /* BOOT_PROTOCOL_H_ */
|