Searched defs:boot_setup (Results 1 - 1 of 1) sorted by relevance

/systemd/src/boot/efi/
H A Dlinux.c89 struct SetupHeader *boot_setup; local
105 boot_setup = (struct SetupHeader *)(UINTN)addr;
106 ZeroMem(boot_setup, 0x4000);
107 CopyMem(boot_setup, image_setup, sizeof(struct SetupHeader));
108 boot_setup->loader_id = 0xff;
110 boot_setup->code32_start = (UINT32)linux_addr + (image_setup->setup_secs+1) * 512;
120 boot_setup->cmd_line_ptr = (UINT32)addr;
123 boot_setup->ramdisk_start = (UINT32)initrd_addr;
124 boot_setup->ramdisk_len = (UINT32)initrd_size;
126 linux_efi_handover(image, boot_setup);
[all...]

Completed in 7 milliseconds