1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-08 11:27:32 +03:00

boot: efi - remove a couple of Loader* variables

This commit is contained in:
Kay Sievers 2015-02-28 12:15:48 +01:00
parent 03afec3c9a
commit ea1851b60c

View File

@ -66,7 +66,6 @@ typedef struct {
CHAR16 *entry_default_pattern; CHAR16 *entry_default_pattern;
CHAR16 *entry_oneshot; CHAR16 *entry_oneshot;
CHAR16 *options_edit; CHAR16 *options_edit;
CHAR16 *entries_auto;
} Config; } Config;
static VOID cursor_left(UINTN *cursor, UINTN *first) static VOID cursor_left(UINTN *cursor, UINTN *first)
@ -409,10 +408,6 @@ static VOID print_status(Config *config, CHAR16 *loaded_image_path) {
Print(L"LoaderConfigTimeout: %d\n", i); Print(L"LoaderConfigTimeout: %d\n", i);
if (config->entry_oneshot) if (config->entry_oneshot)
Print(L"LoaderEntryOneShot: %s\n", config->entry_oneshot); Print(L"LoaderEntryOneShot: %s\n", config->entry_oneshot);
if (efivar_get(L"LoaderDeviceIdentifier", &s) == EFI_SUCCESS) {
Print(L"LoaderDeviceIdentifier: %s\n", s);
FreePool(s);
}
if (efivar_get(L"LoaderDevicePartUUID", &s) == EFI_SUCCESS) { if (efivar_get(L"LoaderDevicePartUUID", &s) == EFI_SUCCESS) {
Print(L"LoaderDevicePartUUID: %s\n", s); Print(L"LoaderDevicePartUUID: %s\n", s);
FreePool(s); FreePool(s);
@ -1126,46 +1121,6 @@ static VOID config_entry_add_from_file(Config *config, EFI_HANDLE *device, CHAR1
} }
FreePool(initrd); FreePool(initrd);
if (entry->machine_id) {
CHAR16 *var;
/* append additional options from EFI variables for this machine-id */
var = PoolPrint(L"LoaderEntryOptions-%s", entry->machine_id);
if (var) {
CHAR16 *s;
if (efivar_get(var, &s) == EFI_SUCCESS) {
if (entry->options) {
CHAR16 *s2;
s2 = PoolPrint(L"%s %s", entry->options, s);
FreePool(entry->options);
entry->options = s2;
} else
entry->options = s;
}
FreePool(var);
}
var = PoolPrint(L"LoaderEntryOptionsOneShot-%s", entry->machine_id);
if (var) {
CHAR16 *s;
if (efivar_get(var, &s) == EFI_SUCCESS) {
if (entry->options) {
CHAR16 *s2;
s2 = PoolPrint(L"%s %s", entry->options, s);
FreePool(entry->options);
entry->options = s2;
} else
entry->options = s;
efivar_set(var, NULL, TRUE);
}
FreePool(var);
}
}
entry->device = device; entry->device = device;
entry->file = StrDuplicate(file); entry->file = StrDuplicate(file);
len = StrLen(entry->file); len = StrLen(entry->file);
@ -1497,16 +1452,6 @@ static BOOLEAN config_entry_add_loader_auto(Config *config, EFI_HANDLE *device,
/* do not boot right away into auto-detected entries */ /* do not boot right away into auto-detected entries */
entry->no_autoselect = TRUE; entry->no_autoselect = TRUE;
/* export identifiers of automatically added entries */
if (config->entries_auto) {
CHAR16 *s;
s = PoolPrint(L"%s %s", config->entries_auto, file);
FreePool(config->entries_auto);
config->entries_auto = s;
} else
config->entries_auto = StrDuplicate(file);
return TRUE; return TRUE;
} }
@ -1708,7 +1653,6 @@ static VOID config_free(Config *config) {
FreePool(config->entry_default_pattern); FreePool(config->entry_default_pattern);
FreePool(config->options_edit); FreePool(config->options_edit);
FreePool(config->entry_oneshot); FreePool(config->entry_oneshot);
FreePool(config->entries_auto);
} }
EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) { EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
@ -1746,13 +1690,8 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
/* export the device path this image is started from */ /* export the device path this image is started from */
device_path = DevicePathFromHandle(loaded_image->DeviceHandle); device_path = DevicePathFromHandle(loaded_image->DeviceHandle);
if (device_path) { if (device_path) {
CHAR16 *str;
EFI_DEVICE_PATH *path, *paths; EFI_DEVICE_PATH *path, *paths;
str = DevicePathToStr(device_path);
efivar_set(L"LoaderDeviceIdentifier", str, FALSE);
FreePool(str);
paths = UnpackDevicePath(device_path); paths = UnpackDevicePath(device_path);
for (path = paths; !IsDevicePathEnd(path); path = NextDevicePathNode(path)) { for (path = paths; !IsDevicePathEnd(path); path = NextDevicePathNode(path)) {
HARDDRIVE_DEVICE_PATH *drive; HARDDRIVE_DEVICE_PATH *drive;
@ -1798,7 +1737,6 @@ EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
config_entry_add_loader_auto(&config, loaded_image->DeviceHandle, root_dir, loaded_image_path, config_entry_add_loader_auto(&config, loaded_image->DeviceHandle, root_dir, loaded_image_path,
L"auto-efi-default", '\0', L"EFI Default Loader", L"\\EFI\\Boot\\boot" EFI_MACHINE_TYPE_NAME ".efi"); L"auto-efi-default", '\0', L"EFI Default Loader", L"\\EFI\\Boot\\boot" EFI_MACHINE_TYPE_NAME ".efi");
config_entry_add_osx(&config); config_entry_add_osx(&config);
efivar_set(L"LoaderEntriesAuto", config.entries_auto, FALSE);
if (efivar_get_raw(&global_guid, L"OsIndicationsSupported", &b, &size) == EFI_SUCCESS) { if (efivar_get_raw(&global_guid, L"OsIndicationsSupported", &b, &size) == EFI_SUCCESS) {
UINT64 osind = (UINT64)*b; UINT64 osind = (UINT64)*b;