mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 05:53:22 -07:00
* usr/bin/byobu-launch.in:
- Don't autolaunch for ARM serial consoles
This commit is contained in:
parent
02737c8f45
commit
69871dedc8
2 changed files with 3 additions and 1 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -26,6 +26,8 @@ byobu (5.128) unreleased; urgency=medium
|
|||
creating it)
|
||||
* usr/bin/byobu.in:
|
||||
- Use readlink if the tty command is not available
|
||||
* usr/bin/byobu-launch.in:
|
||||
- Don't autolaunch for ARM serial consoles
|
||||
* usr/lib/byobu/disk_io:
|
||||
- Ensure the detected mount point device exists
|
||||
* usr/lib/byobu/hostname:
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
# $HOME/.bashrc: export BYOBU_DISABLE=1
|
||||
|
||||
_tty=$(tty)
|
||||
if [ "${_tty#/dev/ttyS}" != "$_tty" ]; then
|
||||
if [ "${_tty#/dev/ttyS}" != "$_tty" ] && [ "${_tty#/dev/ttyAMA}" != "$_tty" ]; then
|
||||
# Don't autolaunch byobu on serial consoles
|
||||
# You can certainly run 'byobu' manually, though
|
||||
echo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue