summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-12-17 00:41:20 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-12-17 00:41:20 -0500
commit5fb2a20a29c2cc0494d5a31e175a8e3ff0b2d3e2 (patch)
tree582fafc98c76e98e912f453fb55ca57f29273d57
parent74625a5644f634f73177aaccba6ea34f2f5e37e8 (diff)
# Rename "Linux Boot Manager" -> "Systemd Boot Manager"systemd/v232-4.parabola1
sed -i 's|Linux Boot Manager|Systemd Boot Manager|' src/boot/bootctl.c
-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 dc11b0d9db..d53f8b2a6f 100644
--- a/src/boot/bootctl.c
+++ b/src/boot/bootctl.c
@@ -835,13 +835,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);