Changes in / [db880b9:ecce62c]


Ignore:
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

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

    rdb880b9 recce62c  
    266266
    267267      <varlistentry>
    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>
     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>
    280278        </listitem>
    281279      </varlistentry>
  • chapter10/kernel/Makefile

    rdb880b9 recce62c  
    2020        touch s-kernel-version
    2121
    22 %.xml.tmp: %.toml kernel-config.py kernel_version.py kernel.version
     22%.xml: %.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

    rdb880b9 recce62c  
    189189            elif line.startswith('endif'):
    190190                if_stack = if_stack[:-1]
    191 
    192     if config_buf:
    193         r += [parse_config(config_buf)]
    194 
    195191    return r
    196192
     
    255251for i0, val, i1, title, arrow, key, menu, comment in r:
    256252    rem = max_line
    257     is_choice = (val == '(X)')
    258253
    259254    if val:
     
    268263        title = title[:rem - 3] + '...'
    269264
    270     b = title
    271     if not is_choice:
    272         b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
     265    b = title.lstrip('YyMmNnHh')
    273266    a = title[:len(title) - len(b)]
    274267    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
  • chapter10/kernel/kernel.version

    rdb880b9 recce62c  
    1 6.6.3
     16.4.9
  • chapter10/kernel/systemd.toml

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

    rdb880b9 recce62c  
    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]
    4345  <emphasis role='blue'>G</emphasis>raphics support ---&gt;
    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]
     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]
    4948    <emphasis role='blue'>C</emphasis>onsole display driver support ---&gt;
    50       # If [DRM] is selected as * or M, this must be selected:
    51       [ /*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                    [FRAMEBUFFER_CONSOLE]
     49      [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]
    5250
    5351<emphasis role='blue'>F</emphasis>ile systems ---&gt;
  • chapter10/kernel/sysv.toml

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

    rdb880b9 recce62c  
    3333      [*] <emphasis role='blue'>E</emphasis>nable the generic EFI decompressor                        [EFI_ZBOOT]
    3434  <emphasis role='blue'>G</emphasis>raphics support ---&gt;
    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]
     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]
    4037    <emphasis role='blue'>C</emphasis>onsole display driver support ---&gt;
    41       # If [DRM] is selected as * or M, this must be selected:
    42       [ /*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                    [FRAMEBUFFER_CONSOLE]</screen>
     38      [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]</screen>
Note: See TracChangeset for help on using the changeset viewer.