Lines Matching refs:hdr
92 struct setup_header hdr; member
111 UINTN start = (UINTN)params->hdr.code32_start; in linux_efi_handover()
119 handover = (handover_f)(start + params->hdr.handover_offset); in linux_efi_handover()
146 if (image_params->hdr.boot_flag != 0xAA55 || in linux_exec()
147 image_params->hdr.header != SETUP_MAGIC || in linux_exec()
148 image_params->hdr.version < 0x20b || in linux_exec()
149 !image_params->hdr.relocatable_kernel) in linux_exec()
163 boot_params->hdr = image_params->hdr; in linux_exec()
164 boot_params->hdr.type_of_loader = 0xff; in linux_exec()
165 setup_sectors = image_params->hdr.setup_sects > 0 ? image_params->hdr.setup_sects : 4; in linux_exec()
166 …boot_params->hdr.code32_start = (UINT32) POINTER_TO_PHYSICAL_ADDRESS(linux_buffer) + (setup_sector… in linux_exec()
181 boot_params->hdr.cmd_line_ptr = (UINT32) addr; in linux_exec()
190 boot_params->hdr.ramdisk_image = (UINT32) POINTER_TO_PHYSICAL_ADDRESS(initrd_buffer); in linux_exec()
191 boot_params->hdr.ramdisk_size = (UINT32) initrd_length; in linux_exec()