From 4beaf24f416e33840a974c18c34b56084d2b978a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 21 Jan 2013 01:27:32 +0100 Subject: [PATCH] efi: set a nice description string in the ESP units --- src/efi-boot-generator/efi-boot-generator.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/efi-boot-generator/efi-boot-generator.c b/src/efi-boot-generator/efi-boot-generator.c index c7bf34a53..1319c7120 100644 --- a/src/efi-boot-generator/efi-boot-generator.c +++ b/src/efi-boot-generator/efi-boot-generator.c @@ -77,6 +77,8 @@ int main(int argc, char *argv[]) { fprintf(f, "# Automatially generated by systemd-efi-boot-generator\n\n" + "[Unit]\n" + "Description=EFI System Partition\n\n" "[Mount]\n" "Where=/boot\n" "What=/dev/disk/by-partuuid/%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x\n" @@ -97,10 +99,11 @@ int main(int argc, char *argv[]) { return EXIT_FAILURE; } - fprintf(f, - "# Automatially generated by systemd-efi-boot-generator\n\n" - "[Automount]\n" - "Where=/boot\n"); + fputs("# Automatially generated by systemd-efi-boot-generator\n\n" + "[Unit]\n" + "Description=EFI System Partition Automount\n\n" + "[Automount]\n" + "Where=/boot\n", f); free(name); name = strjoin(arg_dest, "/local-fs.target.wants/boot.automount", NULL); -- 2.30.2