mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
49 lines
1.6 KiB
C
49 lines
1.6 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "sd-id128.h"
|
|
#include "sd-json.h"
|
|
|
|
#include "boot-entry.h"
|
|
#include "image-policy.h"
|
|
#include "pager.h"
|
|
|
|
typedef enum InstallSource {
|
|
ARG_INSTALL_SOURCE_IMAGE,
|
|
ARG_INSTALL_SOURCE_HOST,
|
|
ARG_INSTALL_SOURCE_AUTO,
|
|
} InstallSource;
|
|
|
|
extern char *arg_esp_path;
|
|
extern char *arg_xbootldr_path;
|
|
extern bool arg_print_esp_path;
|
|
extern bool arg_print_dollar_boot_path;
|
|
extern unsigned arg_print_root_device;
|
|
extern bool arg_touch_variables;
|
|
extern bool arg_install_random_seed;
|
|
extern PagerFlags arg_pager_flags;
|
|
extern bool arg_graceful;
|
|
extern bool arg_quiet;
|
|
extern int arg_make_entry_directory; /* tri-state: < 0 for automatic logic */
|
|
extern sd_id128_t arg_machine_id;
|
|
extern char *arg_install_layout;
|
|
extern BootEntryTokenType arg_entry_token_type;
|
|
extern char *arg_entry_token;
|
|
extern sd_json_format_flags_t arg_json_format_flags;
|
|
extern bool arg_arch_all;
|
|
extern char *arg_root;
|
|
extern char *arg_image;
|
|
extern InstallSource arg_install_source;
|
|
extern char *arg_efi_boot_option_description;
|
|
extern bool arg_dry_run;
|
|
extern ImagePolicy *arg_image_policy;
|
|
extern bool arg_varlink;
|
|
|
|
static inline const char* arg_dollar_boot_path(void) {
|
|
/* $BOOT shall be the XBOOTLDR partition if it exists, and otherwise the ESP */
|
|
return arg_xbootldr_path ?: arg_esp_path;
|
|
}
|
|
|
|
int acquire_esp(int unprivileged_mode, bool graceful, uint32_t *ret_part, uint64_t *ret_pstart, uint64_t *ret_psize, sd_id128_t *ret_uuid, dev_t *ret_devid);
|
|
int acquire_xbootldr(int unprivileged_mode, sd_id128_t *ret_uuid, dev_t *ret_devid);
|