Changes in / [00de269:73d91ac]


Ignore:
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    r00de269 r73d91ac  
    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

    r00de269 r73d91ac  
    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

    r00de269 r73d91ac  
    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

    r00de269 r73d91ac  
    186186            elif line.startswith('endif'):
    187187                if_stack = if_stack[:-1]
    188 
    189     if config_buf:
    190         r += [parse_config(config_buf)]
    191 
    192188    return r
    193189
     
    252248for i0, val, i1, title, arrow, key, menu, comment in r:
    253249    rem = max_line
    254     is_choice = (val == '(X)')
    255250
    256251    if val:
     
    265260        title = title[:rem - 3] + '...'
    266261
    267     b = title
    268     if not is_choice:
    269         b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
     262    b = title.lstrip('YyMmNnHh')
    270263    a = title[:len(title) - len(b)]
    271264    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
  • chapter10/kernel/kernel.version

    r00de269 r73d91ac  
    1 6.6.3
     16.4.12
  • chapter10/kernel/systemd.toml

    r00de269 r73d91ac  
    1414DEVTMPFS='*'
    1515DEVTMPFS_MOUNT='*'
    16 DRM=' *M'
     16FB='*'
     17FRAMEBUFFER_CONSOLE='*'
     18
    1719AUDIT=' '
    1820NET='*'
     
    2729
    2830revision='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

    r00de269 r73d91ac  
    4242    [*] <emphasis role='blue'>E</emphasis>xport DMI identification via sysfs to userspace                 [DMIID]
    4343  <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]
     44    <emphasis role='blue'>F</emphasis>rame buffer Devices ---&gt;
     45      &lt;*&gt; <emphasis role='blue'>S</emphasis>upport for frame buffer devices ---&gt;                             [FB]
    4946    <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]
     47      [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]
    5248
    5349<emphasis role='blue'>F</emphasis>ile systems ---&gt;
  • chapter10/kernel/sysv.toml

    r00de269 r73d91ac  
    1313DEVTMPFS='*'
    1414DEVTMPFS_MOUNT='*'
    15 DRM=' *M'
     15FB='*'
     16FRAMEBUFFER_CONSOLE='*'
    1617
    1718revision='sysv'
    18 
    19 [DRM_FBDEV_EMULATION]
    20 value = ' *'
    21 comment = 'If [DRM] is selected as * or M, this must be selected'
    22 
    23 [FRAMEBUFFER_CONSOLE]
    24 value = ' *'
    25 comment = 'If [DRM] is selected as * or M, this must be selected'
  • chapter10/kernel/sysv.xml

    r00de269 r73d91ac  
    3030                                                           ...  [DEVTMPFS_MOUNT]
    3131  <emphasis role='blue'>G</emphasis>raphics support ---&gt;
    32     &lt; /*/M&gt; <emphasis role='blue'>D</emphasis>irect Rendering Manager (XFree86 4.1.0 and higher DRI support) ---&gt;
    33                                                                       ...  [DRM]
    34     # If [DRM] is selected as * or M, this must be selected:
    35     [ /*]   <emphasis role='blue'>E</emphasis>nable legacy fbdev support for your modesetting driver
    36                                                       ...  [DRM_FBDEV_EMULATION]
     32    <emphasis role='blue'>F</emphasis>rame buffer Devices ---&gt;
     33      &lt;*&gt; <emphasis role='blue'>S</emphasis>upport for frame buffer devices ---&gt;                             [FB]
    3734    <emphasis role='blue'>C</emphasis>onsole display driver support ---&gt;
    38       # If [DRM] is selected as * or M, this must be selected:
    39       [ /*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                    [FRAMEBUFFER_CONSOLE]</screen>
     35      [*] <emphasis role='blue'>F</emphasis>ramebuffer Console support                      [FRAMEBUFFER_CONSOLE]</screen>
Note: See TracChangeset for help on using the changeset viewer.