int boot_config_augment_from_loader(
BootConfig *config,
char **found_by_loader,
- bool only_auto) {
+ bool auto_only) {
static const BootEntryAddons no_addons = (BootEntryAddons) {};
static const char *const title_table[] = {
continue;
}
- if (only_auto && !startswith(*i, "auto-"))
+ if (auto_only && !startswith(*i, "auto-"))
continue;
c = strdup(*i);
int boot_config_finalize(BootConfig *config);
int boot_config_load(BootConfig *config, const char *esp_path, const char *xbootldr_path);
int boot_config_load_auto(BootConfig *config, const char *override_esp_path, const char *override_xbootldr_path);
-int boot_config_augment_from_loader(BootConfig *config, char **list, bool only_auto);
+int boot_config_augment_from_loader(BootConfig *config, char **list, bool auto_only);
int boot_config_select_special_entries(BootConfig *config, bool skip_efivars);