From: Lennart Poettering Date: Thu, 11 Nov 2021 14:20:51 +0000 (+0100) Subject: boot: line-break magic[] array to match osrel[] line breaks X-Git-Tag: v250-rc1~300^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81d9db68052f793454babf3c127eb8da16277e19;p=thirdparty%2Fsystemd.git boot: line-break magic[] array to match osrel[] line breaks --- diff --git a/src/boot/efi/boot.c b/src/boot/efi/boot.c index ccbdca22718..0bacfb4bbed 100644 --- a/src/boot/efi/boot.c +++ b/src/boot/efi/boot.c @@ -29,8 +29,9 @@ #define TEXT_ATTR_SWAP(c) EFI_TEXT_ATTR(((c) & 0b11110000) >> 4, (c) & 0b1111) -/* magic string to find in the binary image */ -_used_ _section_(".sdmagic") static const char magic[] = "#### LoaderInfo: systemd-boot " GIT_VERSION " ####"; +/* Magic string for recognizing our own binaries */ +_used_ _section_(".sdmagic") static const char magic[] = + "#### LoaderInfo: systemd-boot " GIT_VERSION " ####"; /* Makes systemd-boot available from \EFI\Linux\ for testing purposes. */ _used_ _section_(".osrel") static const char osrel[] =