summaryrefslogtreecommitdiff
path: root/interface-definitions
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-06-11 14:49:04 +0200
committerChristian Poessinger <christian@poessinger.com>2020-06-11 14:49:04 +0200
commit5c94168a7fa6dc7a82e307240bf7fde8bbece82c (patch)
tree3b78f3a3f5936b8e7051f7ce1c9f12ec38b65db1 /interface-definitions
parentf812c5d1ce01efa8323bfb797c57f68f474665bb (diff)
parentef6f5d8054bb4e6a35260b86ebd845c8289fbaca (diff)
downloadvyos-1x-5c94168a7fa6dc7a82e307240bf7fde8bbece82c.tar.gz
vyos-1x-5c94168a7fa6dc7a82e307240bf7fde8bbece82c.zip
Merge branch 'serial-console' of github.com:c-po/vyos-1x into current
* 'serial-console' of github.com:c-po/vyos-1x: console: T2569: run VGA console powersave on tty1 console: T2569: replicate console settings to grub.cfg Debian: fix warning about undefined substitution variables console: T2569: only start serial console if device exists console: T2529: migrate from ttyUSB device to new device in /dev/serial/by-bus console: T2570: remove support for Hayes Modems netconsole: T2561: use migrator to delete config nodes console: T2569: initial implementation with XML and Python
Diffstat (limited to 'interface-definitions')
-rw-r--r--interface-definitions/system-console.xml.in90
1 files changed, 90 insertions, 0 deletions
diff --git a/interface-definitions/system-console.xml.in b/interface-definitions/system-console.xml.in
new file mode 100644
index 000000000..71e63d0cb
--- /dev/null
+++ b/interface-definitions/system-console.xml.in
@@ -0,0 +1,90 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="system">
+ <children>
+ <node name="console" owner="${vyos_conf_scripts_dir}/system_console.py">
+ <properties>
+ <help>Serial console configuration</help>
+ <priority>100</priority>
+ </properties>
+ <children>
+ <tagNode name="device">
+ <properties>
+ <help>Serial console device name</help>
+ <completionHelp>
+ <script>ls -1 /dev | grep -e ttyS -e hvc</script>
+ <script>if [ -d /dev/serial/by-bus ]; then ls -1 /dev/serial/by-bus; fi</script>
+ </completionHelp>
+ <valueHelp>
+ <format>ttySN</format>
+ <description>TTY device name, regular serial port</description>
+ </valueHelp>
+ <valueHelp>
+ <format>usbNbXpY</format>
+ <description>TTY device name, USB based</description>
+ </valueHelp>
+ <valueHelp>
+ <format>hvcN</format>
+ <description>Xen console</description>
+ </valueHelp>
+ <constraint>
+ <regex>^(ttyS[0-9]+|hvc[0-9]+|usb[0-9]+b.*)$</regex>
+ </constraint>
+ </properties>
+ <children>
+ <leafNode name="speed">
+ <properties>
+ <help>Console baud rate</help>
+ <completionHelp>
+ <list>1200 2400 4800 9600 19200 38400 57600 115200</list>
+ </completionHelp>
+ <valueHelp>
+ <format>1200</format>
+ <description>1200 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>2400</format>
+ <description>2400 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>4800</format>
+ <description>4800 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>9600</format>
+ <description>9600 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>19200</format>
+ <description>19200 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>38400</format>
+ <description>38400 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>57600</format>
+ <description>57600 bps</description>
+ </valueHelp>
+ <valueHelp>
+ <format>115200</format>
+ <description>115200 bps</description>
+ </valueHelp>
+ <constraint>
+ <regex>(1200|2400|4800|9600|19200|38400|57600|115200)</regex>
+ </constraint>
+ </properties>
+ </leafNode>
+ </children>
+ </tagNode>
+ <leafNode name="powersave">
+ <properties>
+ <help>Enable screen blank powersaving on VGA console</help>
+ <valueless/>
+ </properties>
+ </leafNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>