Searched refs:xbootldr_path (Results 1 – 4 of 4) sorted by relevance
/systemd-251/src/boot/ |
D | bless-boot.c | 103 _cleanup_free_ char *esp_path = NULL, *xbootldr_path = NULL; in acquire_path() local 115 …r = find_xbootldr_and_warn(NULL, /* unprivileged_mode= */ false, &xbootldr_path, NULL, &xbootldr_d… in acquire_path() 119 if (!esp_path && !xbootldr_path) in acquire_path() 124 …if (esp_path && xbootldr_path && !devnum_set_and_equal(esp_devid, xbootldr_devid)) /* in case the … in acquire_path() 125 a = strv_new(esp_path, xbootldr_path); in acquire_path() 129 a = strv_new(xbootldr_path); in acquire_path()
|
D | bootctl.c | 565 const char *xbootldr_path, in boot_config_load_and_select() argument 573 bool same = esp_path && xbootldr_path && devnum_set_and_equal(esp_devid, xbootldr_devid); in boot_config_load_and_select() 575 r = boot_config_load(config, esp_path, same ? NULL : xbootldr_path); in boot_config_load_and_select() 594 const char *xbootldr_path, in status_entries() argument 602 assert(esp_path || xbootldr_path); in status_entries() 604 if (xbootldr_path) { in status_entries() 605 dollar_boot_path = xbootldr_path; in status_entries()
|
/systemd-251/src/shared/ |
D | bootspec.c | 901 const char *xbootldr_path) { in boot_config_load() argument 925 if (xbootldr_path) { in boot_config_load() 926 p = strjoina(xbootldr_path, "/loader/entries"); in boot_config_load() 927 r = boot_entries_find_type1(config, xbootldr_path, p); in boot_config_load() 931 p = strjoina(xbootldr_path, "/EFI/Linux/"); in boot_config_load() 932 r = boot_entries_find_unified(config, xbootldr_path, p); in boot_config_load()
|
D | bootspec.h | 99 int boot_config_load(BootConfig *config, const char *esp_path, const char *xbootldr_path);
|