mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
15 lines
314 B
C
15 lines
314 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
int sync_everything(void);
|
|
|
|
const char *get_efi_arch(void);
|
|
|
|
int get_file_version(int fd, char **ret);
|
|
|
|
int settle_entry_token(void);
|
|
|
|
static inline const char* etc_kernel(void) {
|
|
return getenv("KERNEL_INSTALL_CONF_ROOT") ?: "/etc/kernel/";
|
|
}
|