Files
kvmtool/include/kvm/boot-protocol.h
T
Cyrill Gorcunov b3594ec7e0 kvm tools: Separate BIOS specifics into own file
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>
2015-06-01 16:39:41 +01:00

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_ */