update to efibootmgr-18

Add "| cut -f 1" to efibootmgr command for checking the configuration,
so long boring paths will not show up.

Update unifont version, and kernel version (in example) by the way.
This commit is contained in:
Xi Ruoyao 2022-07-12 01:07:10 +08:00
parent bf4a8816d0
commit aebcd92ce0
No known key found for this signature in database
GPG Key ID: ACAAD20E19E710E3
5 changed files with 20 additions and 23 deletions

View File

@ -41,6 +41,16 @@
</itemizedlist>
</listitem>
-->
<listitem>
<para>July 12th, 2022</para>
<itemizedlist>
<listitem>
<para>[xry111] - Update to efibootmgr-18. Fixes
<ulink url="&blfs-ticket-root;16773">#16773</ulink>.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>July 10th, 2022</para>
<itemizedlist>

View File

@ -334,9 +334,9 @@ to avoid building libxml2 twice, which is slow with all deps -->
<!-- UEFI bootloaders -->
<!ENTITY efivar-version "38">
<!ENTITY efibootmgr-version "17">
<!ENTITY efibootmgr-version "18">
<!ENTITY grub-version "2.06">
<!ENTITY unifont-version "14.0.01">
<!ENTITY unifont-version "14.0.04">
<!-- Chapter 13 -->
<!ENTITY autoconf213-version "2.13">

View File

@ -6,9 +6,9 @@
<!ENTITY efibootmgr-download-http "https://github.com/rhboot/efibootmgr/archive/&efibootmgr-version;/efibootmgr-&efibootmgr-version;.tar.gz">
<!ENTITY efibootmgr-download-ftp " ">
<!ENTITY efibootmgr-md5sum "6ae315936d9bc8613b3a4cb8a4064128">
<!ENTITY efibootmgr-size "44 KB">
<!ENTITY efibootmgr-buildsize "592 KB">
<!ENTITY efibootmgr-md5sum "e170147da25e1d5f72721ffc46fe4e06">
<!ENTITY efibootmgr-size "48 KB">
<!ENTITY efibootmgr-buildsize "1.1 MB">
<!ENTITY efibootmgr-time "less than 0.1 SBU">
]>
@ -85,19 +85,6 @@
<sect2 role="installation">
<title>Installation of efibootmgr</title>
<para>
At first, fix an outdated hotfix declaration causing compilation
failure:
</para>
<screen><userinput>sed -e '/extern int efi_set_verbose/d' -i src/efibootmgr.c</userinput></screen>
<para>
Fix an issue building this package with efivar-38 or later:
</para>
<screen><userinput>sed 's/-Werror//' -i Make.defaults</userinput></screen>
<para>
Build <application>efibootmgr</application> with the following
commands:

View File

@ -12,7 +12,7 @@
<!ENTITY grub-efi-time "1.0 SBU (on 64-bit LFS)">
<!ENTITY unifont-download-http "https://unifoundry.com/pub/unifont/unifont-&unifont-version;/font-builds/unifont-&unifont-version;.pcf.gz">
<!ENTITY unifont-md5sum "8191ca4fce0eb6073d47c7573e6babc1">
<!ENTITY unifont-md5sum "428aa81e2433db172bbf7f4136cee6c5">
<!ENTITY unifont-size "1.3 MB">
<!ENTITY gcc-download-http "&gnu-http;/gcc/gcc-&gcc-version;/gcc-&gcc-version;.tar.xz">

View File

@ -324,7 +324,7 @@ mount -v -t vfat /dev/sda1 /boot/efi</userinput></screen>
Installation finished. No error reported.</literal></screen>
<para>
Issue <command>efibootmgr</command> to recheck the EFI boot
Issue <command>efibootmgr | cut -f 1</command> to recheck the EFI boot
configuration. An example of the output is:
</para>
@ -374,8 +374,8 @@ if loadfont /boot/grub/fonts/unicode.pf2; then
terminal_output gfxterm
fi
menuentry "GNU/Linux, Linux 5.10.17-lfs-10.1" {
linux /boot/vmlinuz-5.10.17-lfs-10.1 root=/dev/sda2 ro
menuentry "GNU/Linux, Linux 5.18.8-lfs-r11.1-147" {
linux /boot/vmlinuz-5.18.8-lfs-r11.1-147 root=/dev/sda2 ro
}
menuentry "Firmware Setup" {
@ -385,7 +385,7 @@ menuentry "Firmware Setup" {
<para>
<literal>(hd0,2)</literal>, <literal>sda2</literal>, and
<literal>5.10.17-lfs-10.1</literal> should be replaced to match your
<literal>5.18.8-lfs-r11.1-147</literal> should be replaced to match your
configuration.
</para>