0007-FSDG-bootctl-Say-Systemd-Boot-Manager-instead-of-Lin.patch 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. From 31e5d50f17d3993839d8f7c9f344a620e3871812 Mon Sep 17 00:00:00 2001
  2. From: Luke Shumaker <lukeshu@parabola.nu>
  3. Date: Sat, 17 Dec 2016 00:56:43 -0500
  4. Subject: [PATCH 7/7] FSDG: bootctl: Say "Systemd Boot Manager" instead of
  5. "Linux Boot Manager"
  6. ---
  7. src/boot/bootctl.c | 4 ++--
  8. 1 file changed, 2 insertions(+), 2 deletions(-)
  9. diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
  10. index 2832a39dd7..534870ee50 100644
  11. --- a/src/boot/bootctl.c
  12. +++ b/src/boot/bootctl.c
  13. @@ -665,13 +665,13 @@ static int install_variables(const char *esp_path,
  14. "Failed to determine current boot order: %m");
  15. if (first || r == 0) {
  16. - r = efi_add_boot_option(slot, "Linux Boot Manager",
  17. + r = efi_add_boot_option(slot, "Systemd Boot Manager",
  18. part, pstart, psize,
  19. uuid, path);
  20. if (r < 0)
  21. return log_error_errno(r, "Failed to create EFI Boot variable entry: %m");
  22. - log_info("Created EFI boot entry \"Linux Boot Manager\".");
  23. + log_info("Created EFI boot entry \"Systemd Boot Manager\".");
  24. }
  25. return insert_into_order(slot, first);
  26. --
  27. 2.18.0