blob: c4bf18c10b9550fa5fa506573fca01cf81be6ec4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once
#include <efi.h>
EFI_STATUS linux_exec(
EFI_HANDLE image,
const CHAR8 *cmdline, UINTN cmdline_len,
const void *linux_buffer, UINTN linux_length,
const void *initrd_buffer, UINTN initrd_length);
|