yavdr-ansible/roles/serial-ir/templates/modprobe.d/serial_ir.conf.j2
Alexander Grothe f1709c8494 rename variable serial_device to serial_ir_device
and add an entry for the serial-ir role to the playbook (commented out
by default, so the user has to enable it if required)
2019-01-02 09:26:56 +01:00

9 lines
319 B
Django/Jinja

#COM1 equivalent, /dev/ttyS0
{% if serial_ir_device == "ttyS0" %}
options serial_ir irq=4 io=0x3f8
{% elif serial_ir_device == "ttyS1" %}
#COM2 equivalent, /dev/ttyS1
options serial_ir irq=3 io=0x2f8
{% endif %}
install serial_ir setserial /dev/{{serial_ir_device}} uart none; /sbin/modprobe --ignore-install serial_ir