Displaying 2 results from an estimated 2 matches for "edd_info".
Did you mean:
edid_info
2004 Feb 27
14
BIOS disk geometry and Linux 2.6
I am working on a Linux-based boot disk for my project
(http://unattended.sourceforge.net/), and I have hit a snag.
Under Linux 2.6, the kernel (via HDIO_GETGEO) always reports the C/H/S
geometry of an IDE drive as X/16/63. But most BIOSes want to use the
geometry Y/255/63.
Most partitioning tools (including Parted) will take clues from an
existing partition table and adapt to the BIOS values.
2013 May 21
26
New Xen boot infrastructure proposal
...*e820map;
} xbia_mem_t;
/* Xen Boot Info Arch (XBIA). */
typedef struct {
EFI_SYSTEM_TABLE *efi_system_table;
u64 mps; /* Pointer to MPS. */
u64 acpi; /* Pointer to ACPI RSDP. */
u64 smbios; /* Pointer to SMBIOS. */
xbia_mem_t mem;
struct xen_vga_console_info vga_console_info;
struct edd_info *edd_info;
} xbia_t;
/* Main Xen Boot Info (XBI) structure. */
typedef struct {
char *boot_loader_name;
char *cmdline;
u32 mods_count;
xbi_mod_t *mods;
xbia_t arch;
} xbi_t;
All data should be placed in above structures as early
as possible. Usually it will be done in some assembly
file...