mirror of
https://github.com/systemd/systemd.git
synced 2026-07-13 02:51:14 +00: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/";
|
|
}
|