Changeset ae7b9ed


Ignore:
Timestamp:
08/24/2024 05:03:57 PM (3 weeks ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/arm64
Children:
f4f58d4
Parents:
8467fab (diff), 54c0a86 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/trunk' into xry111/arm64

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    r8467fab rae7b9ed  
     12024-08-23 Xi Ruoyao <xry111@xry111.site>
     2   * In console, detect FB console by checking /sys/class/graphics/fbcon
     3     instead of fb0.  The latter does not exist if CONFIG_FB=n, but
     4     CONFIG_DRM_FBDEV_EMULATION=y can support a FB console without
     5     CONFIG_FB.
     6
    172024-07-12 Xi Ruoyao <xry111@xry111.site>
    28   * In mountvirtfs, recreate /dev/fd correctly if it's already created
  • bootscripts/lfs/init.d/console

    r8467fab rae7b9ed  
    4848
    4949      # Figure out if a framebuffer console is used
    50       [ -d /sys/class/graphics/fb0 ] && use_fb=1 || use_fb=0
     50      [ -d /sys/class/graphics/fbcon ] && use_fb=1 || use_fb=0
    5151
    5252      # Figure out the command to set the console into the
  • chapter01/changelog.xml

    r8467fab rae7b9ed  
    4242
    4343    <listitem>
     44      <para>2024-08-23</para>
     45      <itemizedlist>
     46        <listitem>
     47          <para>[xry111] - Update to lfs-bootscripts-20240823, to fix an
     48          issue causing VT 2-6 not affected by the FONT= setting in
     49          /etc/sysconfig/console.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54    <listitem>
    4455      <para>2024-08-17</para>
    4556      <itemizedlist>
  • chapter01/whatsnew.xml

    r8467fab rae7b9ed  
    295295      <para>Lz4-&lz4-version;</para>
    296296    </listitem>
    297     <listitem>
    298       <para>glibc-2.39-upstream_fix-1.patch</para>
    299     </listitem>
    300297  </itemizedlist>
    301298
  • chapter06/gcc-pass2.xml

    r8467fab rae7b9ed  
    135135        <listitem>
    136136          <para>Allow <filename class="libraryfile">libstdc++</filename> to
    137           use the shared <filename class="libraryfile">libgcc</filename> being
    138           built in this pass, instead of the static version that was built in GCC
    139           pass 1. This is necessary to support C++ exception
    140           handling.</para>
     137          use the <filename class="libraryfile">libgcc</filename> being
     138          built in this pass, instead of the previous version built in
     139          <xref linkend='ch-tools-gcc-pass1'/>.  The previous version cannot
     140          properly support C++ exception handling because it was built
     141          without libc support.</para>
    141142        </listitem>
    142143      </varlistentry>
  • chapter08/kmod.xml

    r8467fab rae7b9ed  
    8181        </term>
    8282        <listitem>
    83           <para>This option disables generating the manpages which
     83          <para>This option disables generating the man pages which
    8484          requires an external program.</para>
    8585        </listitem>
  • chapter09/systemd-custom.xml

    r8467fab rae7b9ed  
    103103<screen role="nodump">q /tmp 1777 root root 10d</screen>
    104104
    105       The type field, q, discusses creating a subvolume with quotas which
     105      The type field, q, indicates the creation of a subvolume with quotas which
    106106      is really only applicable to btrfs filesystems.  It references type v
    107107      which in turn references type d (directory). This then creates the
  • packages.ent

    r8467fab rae7b9ed  
    382382<!ENTITY less-fin-sbu "less than 0.1 SBU">
    383383
    384 <!ENTITY lfs-bootscripts-version "20240717">      <!-- Scripts depend on this format -->
     384<!ENTITY lfs-bootscripts-version "20240823">      <!-- Scripts depend on this format -->
    385385<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">
    386386<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.