Changeset db880b9


Ignore:
Timestamp:
12/06/2023 09:34:40 AM (6 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/loongarch, xry111/loongarch-12.1
Children:
9ef0338a
Parents:
ecce62c (diff), 7cce808 (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/loongarch

Files:
9 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    recce62c rdb880b9  
    31933193        <seglistitem>
    31943194          <seg>
     3195            <ulink url="&blfs-book;general/asciidoctor.html">Asciidoctor</ulink>,
    31953196            <ulink
    31963197              url="https://people.redhat.com/sgrubb/libcap-ng/">Libcap-NG</ulink>,
     
    32013202              url="&blfs-book;postlfs/linux-pam.html">Linux-PAM</ulink>,
    32023203            <ulink
    3203               url="&blfs-book;postlfs/smartmontools.html">smartmontools</ulink>, and
     3204              url="&blfs-book;postlfs/smartmontools.html">smartmontools</ulink>,
     3205            <ulink url="https://po4a.org/index.php.en">po4a</ulink>, and
    32043206            <ulink url="&blfs-book;general/slang.html">slang</ulink>
    32053207          </seg>
  • chapter10/kernel.xml

    recce62c rdb880b9  
    266266
    267267      <varlistentry>
    268         <term><parameter>Framebuffer Console support</parameter></term>
    269         <listitem>
    270           <para>This is needed to display the Linux console on a frame
    271           buffer device.  To allow the kernel to print debug messages at an
    272           early boot stage, it shouldn't be built as a kernel module
    273           unless an initramfs will be used. And, if
    274           <option>CONFIG_DRM</option> (Direct Rendering Manager) is enabled,
    275           it's likely <option>CONFIG_DRM_FBDEV_EMULATION</option> (Enable
    276           legacy fbdev support for your modesetting driver) should be
    277           enabled as well.</para>
     268        <term>
     269          <parameter>
     270            Enable legacy fbdev support for your modesetting driver
     271          </parameter> and
     272          <parameter>Framebuffer Console support</parameter>
     273        </term>
     274        <listitem>
     275          <para>These are needed to display the Linux console on a
     276          GPU driven by a DRI (Direct Rendering Infrastructure) driver.
     277          If <option>CONFIG_DRM</option> (Direct Rendering Manager) is
     278          enabled, you should enable these two options as well or you'll see
     279          a blank screen once the DRI driver is loaded.</para>
    278280        </listitem>
    279281      </varlistentry>
  • chapter10/kernel/Makefile

    recce62c rdb880b9  
    2020        touch s-kernel-version
    2121
    22 %.xml: %.toml kernel-config.py kernel_version.py kernel.version
     22%.xml.tmp: %.toml kernel-config.py kernel_version.py kernel.version
    2323        ./kernel-config.py $(KERNEL_TREE) $< > $@
     24
     25%.xml: %.xml.tmp
     26        mv $< $@
  • chapter10/kernel/kernel-config.py

    recce62c rdb880b9  
    189189            elif line.startswith('endif'):
    190190                if_stack = if_stack[:-1]
     191
     192    if config_buf:
     193        r += [parse_config(config_buf)]
     194
    191195    return r
    192196
     
    251255for i0, val, i1, title, arrow, key, menu, comment in r:
    252256    rem = max_line
     257    is_choice = (val == '(X)')
    253258
    254259    if val:
     
    263268        title = title[:rem - 3] + '...'
    264269
    265     b = title.lstrip('YyMmNnHh')
     270    b = title
     271    if not is_choice:
     272        b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
    266273    a = title[:len(title) - len(b)]
    267274    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
  • chapter10/kernel/kernel.version

    recce62c rdb880b9  
    1 6.4.9
     16.6.3
  • chapter10/kernel/systemd.toml

    recce62c rdb880b9  
    1414DEVTMPFS='*'
    1515DEVTMPFS_MOUNT='*'
    16 FB='*'
    17 FRAMEBUFFER_CONSOLE='*'
    18 
    19 EFI_ZBOOT='*'
    20 
     16DRM=' *M'
    2117AUDIT=' '
    2218NET='*'
     
    3127
    3228revision='systemd'
     29
     30[DRM_FBDEV_EMULATION]
     31value = ' *'
     32comment = 'If [DRM] is selected as * or M, this must be selected'
     33
     34[FRAMEBUFFER_CONSOLE]
     35value = ' *'
     36comment = 'If [DRM] is selected as * or M, this must be selected'
  • chapter10/kernel/systemd.xml

    recce62c rdb880b9  
    4141  <emphasis role='blue'>F</emphasis>irmware Drivers ---&gt;
    4242    [*] <emphasis role='blue'>E</emphasis>xport DMI identification via sysfs to userspace                 [DMIID]
    43     <emphasis role='blue'>E</emphasis>FI (Extensible Firmware Interface) Support ---&gt;
    44       [*] <emphasis role='blue'>E</emphasis>nable the generic EFI decompressor                        [EFI_ZBOOT]
    4543  <emphasis role='blue'>G</emphasis>raphics support ---&gt;
    46     <emphasis role='blue'>F</emphasis>rame buffer Devices ---&gt;
    47       &lt;*&gt; <emphasis role='blue'>S</emphasis>upport for frame buffer devices ---&gt;                             [FB]
     44    &lt; /*/M&gt; <emphasis role='blue'>D</emphasis>irect Rendering Manager (XFree86 4.1.0 and higher DRI support) ---&gt;
     45                                                                      ...  [DRM]
     46    # If [DRM] is selected as * or M, this must be selected:
     47    [ /*]   <emphasis role='blue'>E</emphasis>nable legacy fbdev support for your modesetting driver
     48                                                      ...  [DRM_FBDEV_EMULATION]
    4849    <emphasis role='blue'>C</emphasis>onsole display driver support ---&gt;
    49       [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]
     50      # If [DRM] is selected as * or M, this must be selected:
     51      [ /*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                    [FRAMEBUFFER_CONSOLE]
    5052
    5153<emphasis role='blue'>F</emphasis>ile systems ---&gt;
  • chapter10/kernel/sysv.toml

    recce62c rdb880b9  
    1313DEVTMPFS='*'
    1414DEVTMPFS_MOUNT='*'
    15 FB='*'
    16 FRAMEBUFFER_CONSOLE='*'
     15DRM=' *M'
    1716
    1817EFI_ZBOOT='*'
    1918
    2019revision='sysv'
     20
     21[DRM_FBDEV_EMULATION]
     22value = ' *'
     23comment = 'If [DRM] is selected as * or M, this must be selected'
     24
     25[FRAMEBUFFER_CONSOLE]
     26value = ' *'
     27comment = 'If [DRM] is selected as * or M, this must be selected'
  • chapter10/kernel/sysv.xml

    recce62c rdb880b9  
    3333      [*] <emphasis role='blue'>E</emphasis>nable the generic EFI decompressor                        [EFI_ZBOOT]
    3434  <emphasis role='blue'>G</emphasis>raphics support ---&gt;
    35     <emphasis role='blue'>F</emphasis>rame buffer Devices ---&gt;
    36       &lt;*&gt; <emphasis role='blue'>S</emphasis>upport for frame buffer devices ---&gt;                             [FB]
     35    &lt; /*/M&gt; <emphasis role='blue'>D</emphasis>irect Rendering Manager (XFree86 4.1.0 and higher DRI support) ---&gt;
     36                                                                      ...  [DRM]
     37    # If [DRM] is selected as * or M, this must be selected:
     38    [ /*]   <emphasis role='blue'>E</emphasis>nable legacy fbdev support for your modesetting driver
     39                                                      ...  [DRM_FBDEV_EMULATION]
    3740    <emphasis role='blue'>C</emphasis>onsole display driver support ---&gt;
    38       [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]</screen>
     41      # If [DRM] is selected as * or M, this must be selected:
     42      [ /*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                    [FRAMEBUFFER_CONSOLE]</screen>
Note: See TracChangeset for help on using the changeset viewer.