Changeset d60b247


Ignore:
Timestamp:
12/06/2023 11:30:16 PM (6 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
9bfff29
Parents:
c4108e5 (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:

Automatic merge of trunk into multilib

Location:
chapter10/kernel
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter10/kernel/highmem.xml

    rc4108e5 rd60b247  
    66<screen role="nodump"><emphasis role='blue'>P</emphasis>rocessor type and features ---&gt;
    77  H<emphasis role='blue'>i</emphasis>gh Memory Support ---&gt;
    8     (X) 64<emphasis role='blue'>G</emphasis>B                                                        [HIGHMEM64G]</screen>
     8    (X) <emphasis role='blue'>6</emphasis>4GB                                                        [HIGHMEM64G]</screen>
  • chapter10/kernel/kernel-config.py

    rc4108e5 rd60b247  
    252252for i0, val, i1, title, arrow, key, menu, comment in r:
    253253    rem = max_line
     254    is_choice = (val == '(X)')
    254255
    255256    if val:
     
    264265        title = title[:rem - 3] + '...'
    265266
    266     b = title.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
     267    b = title
     268    if not is_choice:
     269        b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
    267270    a = title[:len(title) - len(b)]
    268271    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
Note: See TracChangeset for help on using the changeset viewer.