mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-23 22:42:14 +08:00
introduction: Use new kernel configuration rendering in conventions
This commit is contained in:
parent
0add36657c
commit
1cf243636e
15
introduction/welcome/conventions-kernel.xml
Normal file
15
introduction/welcome/conventions-kernel.xml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<!DOCTYPE note PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
||||||
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
|
||||||
|
<!-- Automatically generated by kernel-config.py
|
||||||
|
DO NOT EDIT! -->
|
||||||
|
<screen>M<emphasis role='blue'>a</emphasis>ster section --->
|
||||||
|
<emphasis role='blue'>S</emphasis>ubsection --->
|
||||||
|
[*] <emphasis role='blue'>R</emphasis>equired parameter [REQU_PAR]
|
||||||
|
<*> <emphasis role='blue'>R</emphasis>equired parameter (not as module) [REQU_PAR_NMOD]
|
||||||
|
<*/M> <emphasis role='blue'>R</emphasis>equired parameter (could be a module) [REQU_PAR_MOD]
|
||||||
|
<M> <emphasis role='blue'>R</emphasis>equired parameter (as a module) [REQU_PAR_MOD_ONLY]
|
||||||
|
< /*/M> <emphasis role='blue'>O</emphasis>ptional parameter [OPT_PAR]
|
||||||
|
< /M> <emphasis role='blue'>O</emphasis>ptional parameter (as a module if enabled) [OPT_PAR_MOD_ONLY]
|
||||||
|
[ ] <emphasis role='blue'>I</emphasis>ncompatible parameter [INCOMP_PAR]
|
||||||
|
< > <emphasis role='blue'>I</emphasis>ncompatible parameter (even as module) [INCOMP_PAR_MOD]</screen>
|
@ -135,18 +135,14 @@ EOF</userinput></screen>
|
|||||||
<para>Some packages require specific kernel configuration options.
|
<para>Some packages require specific kernel configuration options.
|
||||||
The general layout for these looks like this:</para>
|
The general layout for these looks like this:</para>
|
||||||
|
|
||||||
<screen><literal>Master section --->
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
||||||
Subsection --->
|
href="conventions-kernel.xml"/>
|
||||||
[*] Required parameter [CONFIG_REQU_PAR]
|
|
||||||
<*> Required parameter (not as module) [CONFIG_REQU_PAR_NMOD]
|
|
||||||
<*/M> Required parameter (could be a module) [CONFIG_REQU_PAR_MOD]
|
|
||||||
<*/M/ > Optional parameter [CONFIG_OPT_PAR]
|
|
||||||
[ ] Incompatible parameter [CONFIG_INCOMP_PAR]
|
|
||||||
< > Incompatible parameter (even as module) [CONFIG_INCOMP_PAR_MOD]</literal></screen>
|
|
||||||
|
|
||||||
<para>[CONFIG_...] on the right gives the name of the option, so you can
|
<para>[...] on the right gives the symbolic name of the option, so you
|
||||||
easily check whether it is set in your <filename>.config</filename> file.
|
can easily check whether it is set in your <filename>.config</filename>
|
||||||
The meaning of the various entries is:
|
file. Note that the <filename>.config</filename> file contains a
|
||||||
|
<literal>CONFIG_</literal> prefix before all symbolic names. The
|
||||||
|
meaning of the various entries is:
|
||||||
|
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<informaltable frame='none'><tgroup cols="2">
|
<informaltable frame='none'><tgroup cols="2">
|
||||||
@ -187,13 +183,36 @@ EOF</userinput></screen>
|
|||||||
it must be selected, either as built-in or as a module
|
it must be selected, either as built-in or as a module
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>
|
||||||
|
<emphasis role="bold">Required parameter (as
|
||||||
|
a module)</emphasis>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
the option can be built-in, a module, or not selected:
|
||||||
|
it must be selected as a module; selecting it as built-in
|
||||||
|
may cause unwanted effects
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<entry>
|
<entry>
|
||||||
<emphasis role="bold">Optional parameter</emphasis>
|
<emphasis role="bold">Optional parameter</emphasis>
|
||||||
</entry>
|
</entry>
|
||||||
<entry>
|
<entry>
|
||||||
rarely used: the option can be built-in, a module, or not
|
the option can be built-in, a module, or not
|
||||||
selected: it may be set any way you wish
|
selected: it may be selected as a module or built-in if you
|
||||||
|
need it for driving the hardware or optional kernel features
|
||||||
|
</entry>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<entry>
|
||||||
|
<emphasis role="bold">Optional parameter</emphasis>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
the option can be built-in, a module, or not
|
||||||
|
selected: it may be selected as a module if you need it
|
||||||
|
for driving the hardware or optional kernel features, but
|
||||||
|
selecting it as built-in may cause unwanted effects
|
||||||
</entry>
|
</entry>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
@ -224,6 +243,13 @@ EOF</userinput></screen>
|
|||||||
The help text describing the option specifies the other selections on which this
|
The help text describing the option specifies the other selections on which this
|
||||||
option relies, and how those other selections are set.</para>
|
option relies, and how those other selections are set.</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
The letter in <emphasis role='blue'>blue</emphasis> is the hotkey
|
||||||
|
for this option. If you are running
|
||||||
|
<command>make menuconfig</command>, you can press a key to quickly
|
||||||
|
traverse all the options with this key as the hotkey on the screen.
|
||||||
|
</para>
|
||||||
|
|
||||||
<para> </para> <!-- add extra white space to improve readability -->
|
<para> </para> <!-- add extra white space to improve readability -->
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ ifeq ($(KERNEL_TREE),)
|
|||||||
$(error "must set KERNEL_TREE=/path/to/kernel/source")
|
$(error "must set KERNEL_TREE=/path/to/kernel/source")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
all: $(OUTPUT)
|
all: $(OUTPUT) ../introduction/welcome/conventions-kernel.xml
|
||||||
|
|
||||||
kernel.version: s-kernel-version; @true
|
kernel.version: s-kernel-version; @true
|
||||||
s-kernel-version: Makefile kernel_version.py
|
s-kernel-version: Makefile kernel_version.py
|
||||||
@ -17,3 +17,6 @@ s-kernel-version: Makefile kernel_version.py
|
|||||||
|
|
||||||
../%-kernel.xml: %.toml kernel-config.py kernel_version.py kernel.version
|
../%-kernel.xml: %.toml kernel-config.py kernel_version.py kernel.version
|
||||||
./kernel-config.py $(KERNEL_TREE) $< > $@
|
./kernel-config.py $(KERNEL_TREE) $< > $@
|
||||||
|
|
||||||
|
../introduction/welcome/conventions-kernel.xml: kernel-config.py testdata/Kconfig testdata/config.toml.example
|
||||||
|
./kernel-config.py testdata testdata/config.toml.example > $@
|
||||||
|
@ -301,9 +301,6 @@ for i0, val, i1, title, arrow, key, menu, comment in r:
|
|||||||
|
|
||||||
buf += [line.rstrip()]
|
buf += [line.rstrip()]
|
||||||
|
|
||||||
import kernel_version
|
|
||||||
kver = kernel_version.kernel_version(path)
|
|
||||||
|
|
||||||
from jinja2 import Template
|
from jinja2 import Template
|
||||||
|
|
||||||
t = Template('''<?xml version="1.0" encoding="ISO-8859-1"?>
|
t = Template('''<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
31
kernel-config/testdata/Kconfig
vendored
Normal file
31
kernel-config/testdata/Kconfig
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
menu "Master section"
|
||||||
|
|
||||||
|
menu "Subsection"
|
||||||
|
|
||||||
|
config REQU_PAR
|
||||||
|
bool "Required parameter"
|
||||||
|
|
||||||
|
config REQU_PAR_NMOD
|
||||||
|
tristate "Required parameter (not as module)"
|
||||||
|
|
||||||
|
config REQU_PAR_MOD
|
||||||
|
tristate "Required parameter (could be a module)"
|
||||||
|
|
||||||
|
config REQU_PAR_MOD_ONLY
|
||||||
|
tristate "Required parameter (as a module)"
|
||||||
|
|
||||||
|
config OPT_PAR
|
||||||
|
tristate "Optional parameter"
|
||||||
|
|
||||||
|
config OPT_PAR_MOD_ONLY
|
||||||
|
tristate "Optional parameter (as a module if enabled)"
|
||||||
|
|
||||||
|
config INCOMP_PAR
|
||||||
|
bool "Incompatible parameter"
|
||||||
|
|
||||||
|
config INCOMP_PAR_MOD
|
||||||
|
tristate "Incompatible parameter (even as module)"
|
||||||
|
|
||||||
|
endmenu # subsection
|
||||||
|
|
||||||
|
endmenu # master section
|
8
kernel-config/testdata/config.toml.example
vendored
Normal file
8
kernel-config/testdata/config.toml.example
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
REQU_PAR='*'
|
||||||
|
REQU_PAR_NMOD='*'
|
||||||
|
REQU_PAR_MOD='*M'
|
||||||
|
OPT_PAR='*M '
|
||||||
|
INCOMP_PAR=' '
|
||||||
|
INCOMP_PAR_MOD=' '
|
||||||
|
REQU_PAR_MOD_ONLY='M'
|
||||||
|
OPT_PAR_MOD_ONLY=' M'
|
Loading…
Reference in New Issue
Block a user