diff options
author | peter <peter@FreeBSD.org> | 1996-03-03 19:07:50 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-03-03 19:07:50 +0000 |
commit | f14a4d4e3f7dd9c0fbb609480912908d4ba2e868 (patch) | |
tree | 5a86785e85477543a727c006b9c4fd321fb64d7e /sys/alpha | |
parent | 32c0e11a4b2d5700d745f8186f6de609d59fa137 (diff) | |
download | FreeBSD-src-f14a4d4e3f7dd9c0fbb609480912908d4ba2e868.zip FreeBSD-src-f14a4d4e3f7dd9c0fbb609480912908d4ba2e868.tar.gz |
Add support for the old-style Linux termio (not termios) TCGETA etc.
Also, LINUX_POSIX_VDISABLE is \0, FreeBSD's is 0xff. Convert between them.
This enables some more programs to run, including the Livingston Portmaster
utilities (PMtools).
Submitted by: Robert Sanders <rsanders@mindspring.com>
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/linux/linux.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/alpha/linux/linux.h b/sys/alpha/linux/linux.h index f6bab97..af0eb04 100644 --- a/sys/alpha/linux/linux.h +++ b/sys/alpha/linux/linux.h @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux.h,v 1.4 1996/01/30 22:56:29 mpp Exp $ + * $Id: linux.h,v 1.5 1996/03/02 19:37:47 peter Exp $ */ #ifndef _I386_LINUX_LINUX_H_ @@ -234,7 +234,9 @@ int linux_fixup __P((int **stack_base, struct image_params *iparams)); #define LINUX_VWERASE 14 #define LINUX_VLNEXT 15 #define LINUX_VEOL2 16 -#define LINUX_NCCS 17 +#define LINUX_NCCS 19 + +#define LINUX_POSIX_VDISABLE '\0' /* Linux c_iflag masks */ #define LINUX_IGNBRK 0x0000001 |