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
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<image schemaversion="8.4" name="test-containers">
|
|
<description type="system">
|
|
<author>Some</author>
|
|
<contact>some@example.com</contact>
|
|
<specification>
|
|
Test containers section used in the buildservice
|
|
</specification>
|
|
</description>
|
|
<preferences>
|
|
<version>1.1.1</version>
|
|
<packagemanager>zypper</packagemanager>
|
|
<type image="oem" filesystem="xfs">
|
|
<bootloader name="zipl" timeout="10">
|
|
<securelinux hkd_sign_cert="some1-signing.crt" hkd_ca_cert="some-ca.crt">
|
|
<hkd_cert name="some1-host.crt"/>
|
|
<hkd_cert name="some2-host.crt"/>
|
|
<hkd_revocation_list name="some1-revocation.crl"/>
|
|
</securelinux>
|
|
<securelinux hkd_sign_cert="some2-signing.crt" hkd_ca_cert="some-ca.crt">
|
|
<hkd_cert name="some3-host.crt"/>
|
|
<hkd_revocation_list name="some2-revocation.crl"/>
|
|
</securelinux>
|
|
</bootloader>
|
|
</type>
|
|
</preferences>
|
|
<repository>
|
|
<source path="obs://some/repo/oss"/>
|
|
</repository>
|
|
<packages type="bootstrap">
|
|
<package name="filesystem"/>
|
|
</packages>
|
|
</image>
|