diff options
author | schweikh <schweikh@FreeBSD.org> | 2001-05-19 08:17:35 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2001-05-19 08:17:35 +0000 |
commit | 09f7f114792c87255b99e286731d347f6849f6d6 (patch) | |
tree | ed23b4b0cdcc864e94c1b3fd453a19527045dca3 /etc/rc.isdn | |
parent | 491129cbdf55fe72c10625b06b0c5143509c5fe5 (diff) | |
download | FreeBSD-src-09f7f114792c87255b99e286731d347f6849f6d6.zip FreeBSD-src-09f7f114792c87255b99e286731d347f6849f6d6.tar.gz |
Anti-foot-shooting for pcvt users: ignore isdn_screenflags which is
only for syscons.
Requested by: Alexander Leidinger <Alexander@Leidinger.net>
MFC after: 7 days
Diffstat (limited to 'etc/rc.isdn')
-rw-r--r-- | etc/rc.isdn | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/rc.isdn b/etc/rc.isdn index 293ba56..a3d3e54 100644 --- a/etc/rc.isdn +++ b/etc/rc.isdn @@ -38,6 +38,16 @@ case ${isdn_enable} in [Yy][Ee][Ss]) echo -n 'ISDN subsystem setup:' + # Check for pcvt driver (VT100/VT220 emulator) + # + if [ -x /usr/sbin/ispcvt ]; then + if /usr/sbin/ispcvt; then + # No vidcontrol if we are using pcvt + # + isdn_screenflags=NO + fi + fi + case ${isdn_flags} in [Nn][Oo]) isdn_flags='' |