home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume8 / pty_uport / READ_ME < prev    next >
Text File  |  1989-09-06  |  1KB  |  40 lines

  1. This version of the pty driver has been hacked upon until it worked under
  2. Microport System V/AT. It's probably full of system no-nos, as I am no
  3. kernel hacker. In particular, the declaration of pty_tty[] and pty_stat[] is
  4. horribly wrong; if you know the right way to do that, PLEASE let me
  5. know. I have tested it under System V/AT versions 2.3 and 2.4, and it
  6. appears to work. This version does NOT work as-is under System V/386.
  7.  
  8. The required lines for the master file are:
  9.  
  10. pts    0    ocrwi    ct    pts    0    14    32
  11. ptm    0    ocrwi    c    ptm    0    15    32
  12.                                                 ^^---major device number;
  13.                                                 change these if you have
  14.                                                 conflicts with other
  15.                                                 device drivers
  16.  
  17. and for the dfile:
  18.  
  19. pts    0    32
  20. ptm    0    32
  21.  
  22. This can be installed using the usual driver installation:
  23. 1) Put pty.c in /usr/linkkit/io.
  24. 2) cd to /usr/linkkit/io, then:
  25.     cc -c -Ml -O pty.c
  26.     ar r ../lib2 pty.o
  27.                    ^--------if your lib2 fills up, create a new one (I
  28.                             used lib5; it must be lib[0-9])
  29. 3) Become superuser, and then:
  30.     cd /usr/linkkit/cf
  31.     [edit master, dfile.wini if you haven't]
  32.     make wini
  33. 4) The file /usr/linkkit/system5 can be installed as your kernel and
  34. booted.
  35. 5) The mkpty shell script will automagically build 32 master and slave
  36. device files. It will figure out which major device numbers you assigned.
  37.  
  38. Good luck...Jay
  39.  
  40.