Rpi-aprs-cmdline.txt

From wikipost
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
/boot/cmdline.txt

The file cmdline.txt in the /boot directory can configure additional TTY's. In case the serial port of the TNC-Pi board is used it is a requirement to remove some of the tty settings in this file.

The original Raspberry Pi /boot/cmdline.txt file contains a single line with the following arguments:

dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait

To use the TNC-Pi board, take out the following two arguments:

  • console=ttyAMA0,115200
  • kgdboc=ttyAMA0,115200

New config line:

dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait