mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 16:37:19 +09:00
Instead of introducing efi-forward.h, we use efi.h for the same purpose in the boot/ folder.
14 lines
302 B
C
14 lines
302 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "efi.h"
|
|
|
|
typedef enum SysFailType {
|
|
SYSFAIL_NO_FAILURE,
|
|
SYSFAIL_FIRMWARE_UPDATE,
|
|
_SYSFAIL_MAX,
|
|
} SysFailType;
|
|
|
|
SysFailType sysfail_check(void);
|
|
const char16_t* sysfail_get_error_str(SysFailType fail_type);
|