diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-08-18 16:40:51 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-08-18 16:40:51 +0200 |
commit | b1675e420479cd6b582c66c0902d6e326340658f (patch) | |
tree | 04bb06f117850da675f7678be6b80ecc2e522a6f /data | |
parent | b9658cf8fa85d5d2bdc503d10340dc82c9c2a8c0 (diff) | |
download | vyos-1x-b1675e420479cd6b582c66c0902d6e326340658f.tar.gz vyos-1x-b1675e420479cd6b582c66c0902d6e326340658f.zip |
lcd: T2564: add support for Lanner, Watchguard, Symantec boxes
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/lcd/LCDd.conf.tmpl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/data/templates/lcd/LCDd.conf.tmpl b/data/templates/lcd/LCDd.conf.tmpl index da749d04a..bde177b6a 100644 --- a/data/templates/lcd/LCDd.conf.tmpl +++ b/data/templates/lcd/LCDd.conf.tmpl @@ -48,8 +48,12 @@ DriverPath=/usr/lib/x86_64-linux-gnu/lcdproc/ # sed1520, serialPOS, serialVFD, shuttleVFD, sli, stv5730, svga, t6963, # text, tyan, ula200, vlsys_m428, xosd, yard2LCD -{% if model is defined and model.startswith('CFA-') %} +{% if model is defined %} +{% if model.startswith('cfa-') %} Driver=CFontzPacket +{% elif model == 'sdec' %} +Driver=sdeclcd +{% endif %} {% endif %} # Tells the driver to bind to the given interface. [default: 127.0.0.1] @@ -112,7 +116,7 @@ Heartbeat=off TitleSpeed=10 {% if model is defined and model is not none %} -{% if model.startswith('CFA-') %} +{% if model.startswith('cfa-') %} ## CrystalFontz packet driver (for CFA533, CFA631, CFA633 & CFA635) ## [CFontzPacket] Model={{ model.split('-')[1] }} @@ -122,5 +126,9 @@ Brightness=500 OffBrightness=50 Reboot=yes USB=yes +{% elif model == 'sdec' %} +## SDEC driver for Lanner, Watchguard, Sophos sppliances ## +[sdeclcd] +# No options {% endif %} {% endif %} |