The console attribute in the bootloader section was used to
target both, output and input console setup using a space separator.
However, there can be multiple consoles specified for output
and input consoles and that turns the idea to handle both in
one attribute into a mess. This commit drops the console attribute
and offers two new attributes output_console and input_console which
can define multiple consoles each using space as a separator.
For example:
<bootloader ... output_console="console serial" input_console="console"/>
This change comes with a schema version bump to v8.4
An automatic XSL transformation template for the old console
attribute into the new output_console and input_console
attributes is also part of this commit.
This Fixes #2886
31 lines
960 B
XML
31 lines
960 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<image schemaversion="8.4" name="apt-testing">
|
|
<description type="system">
|
|
<author>Bob</author>
|
|
<contact>user@example.com</contact>
|
|
<specification>
|
|
Testing various configuration for apt packagemanager
|
|
</specification>
|
|
</description>
|
|
<preferences>
|
|
<version>1.13.2</version>
|
|
<packagemanager>apt</packagemanager>
|
|
<locale>en_US</locale>
|
|
<keytable>us.map.gz</keytable>
|
|
<timezone>Europe/Berlin</timezone>
|
|
<type image="tbz"/>
|
|
</preferences>
|
|
<repository priority="42" sourcetype="baseurl">
|
|
<source path="iso:///image/CDs/dvd.iso">
|
|
<signing key="file:key_a"/>
|
|
</source>
|
|
</repository>
|
|
<packages type="image">
|
|
<package name="foo"/>
|
|
</packages>
|
|
<packages type="bootstrap" bootstrap_package="bootstrap-me">
|
|
<package name="filesystem"/>
|
|
</packages>
|
|
</image>
|