summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@parabola.nu>2016-12-17 00:56:43 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2018-07-19 12:09:44 -0400
commit649b2a771c4c4f220ff51166ed778aaa14fb215c (patch)
treebf6597da6cf2390a35ab5a9d7f95c505e5f38697
parent76dca99bc19596648f6c64c984c2cdc3c59e3f22 (diff)
FSDG: bootctl: Say "Systemd Boot Manager" instead of "Linux Boot Manager"systemd/v237.0-2.parabola1
-rw-r--r--src/boot/bootctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
index ae034f5cdb..197966d7b5 100644
--- a/src/boot/bootctl.c
+++ b/src/boot/bootctl.c
@@ -684,13 +684,13 @@ static int install_variables(const char *esp_path,
"Failed to determine current boot order: %m");
if (first || r == 0) {
- r = efi_add_boot_option(slot, "Linux Boot Manager",
+ r = efi_add_boot_option(slot, "Systemd Boot Manager",
part, pstart, psize,
uuid, path);
if (r < 0)
return log_error_errno(r, "Failed to create EFI Boot variable entry: %m");
- log_info("Created EFI boot entry \"Linux Boot Manager\".");
+ log_info("Created EFI boot entry \"Systemd Boot Manager\".");
}
return insert_into_order(slot, first);