NixOS on ARM/OLIMEX Teres-A64: Difference between revisions

imported>KREYREN
Verbose compatibility notes
imported>KREYREN
Add instructions for serial console
Line 55: Line 55:
== Serial console==
== Serial console==


{{expansion|Details yet to be written..}}
Serial console can be accessed by default on BAUM 115200 using the [https://www.olimex.com/Products/DIY-Laptop/KITS/TERES-USB-DEBUG/ TERES-USB-DEBUG] cable (or make one it's 3 pole jack with pl2303 converter, can be made work off of single board computer, etc..) in headphone jack port and accessed through:
 
<pre>
$ picocom -b BAUM /dev/SERIAL-DEVICE # Often set as /dev/ttyUSB0
</pre>
 
Currently the sdcard has set this by fault, but if you use custom configuration and want to maintain the serial console functionality then you need to append it to the kernel CLI through:
 
<pre>
boot.kernelParams = [
    "console=ttyS0,115200n8"
    "console=ttyAMA0,115200n8"
    "console=tty0"
  ];
</pre>


== Compatibility notes ==
== Compatibility notes ==