home *** CD-ROM | disk | FTP | other *** search
/ Amiga GigaPD 3 / Amiga_GigaPD_v3_3of3.iso / netbsd / incoming / vmunix.mykes.readme < prev    next >
Text File  |  1993-06-25  |  3KB  |  66 lines

  1. I went to the trouble of building this new vmunix for people to try/use.
  2. I've fixed the following things:
  3.  
  4. 1. reboot and /dev/reboot fixed
  5.     (replaced pc@() addressing with abs addressing in locore.s)
  6. 2. applied some unpublished patches to grf_cc given to me by
  7.     chopps.  I will let him make the patches public (they are
  8.     his, after all).
  9. 3. modified the grf_cc sources for pal display to set max
  10.     width to 768 and max height to 578.  Previous values were
  11.     724 and 566.  ALl I changed was initialization values to
  12.     these.  I don't promise they work at that rez :-)
  13. 4. modified kbd.c to have 200us delay for handshaking.  To the best
  14.     of my knowledge, this should fix the key repeat problems
  15.     that some are having.  I can't promise it works.  Markus W.
  16.     has informed me that the fix I made only affects keyboard
  17.     during prompts for mmu panic, etc.  THere were two places
  18.     in the source that used 85us, and mtk already fixed one of
  19.     them.
  20. 5. The _ite_default_height is set to 448 and _ite_default_width
  21.     is set to 688.  Why?  because I want my X at that resolution :-)
  22.     So, if you want to fiddle with the values, try chopps'
  23.     iteconfig stuff or use binpatch on the amigaos side:
  24.     binpatch -s _ite_default_height -r 400 (or whatever) vmunix.721
  25.     binpatch -s _ite_default_width -r 640 (or whatever) vmunix.721
  26.  
  27. Notes:
  28.     You must use the loadbsd in .../NetBSD-Amiga/bin/loadbsd from
  29.     ftp.eunet.ch for any kernel >= 720 to work.
  30.  
  31.     chopps' patch has X working wonderfully for me.
  32.  
  33.     If you want to compile X programs, you must link -static.
  34.     This is due to the X11R5 libs not being shared libs (yet).
  35.     Please french guys: make new shared X libs and release
  36.     retina server soon :-))))
  37.  
  38.     I have xdm working.  I had to recompile xdm from X11R5 source
  39.     tree (got it from ftp site) and link with -lcrypt to get it
  40.     to really work.  The xdm distributed with X11R5 does NOT
  41.     do shadow passwords correctly.  I'm not sure I can upload
  42.     a working binary, as such... But you now know how to make
  43.     your own xdm (remember gcc -static for linking).  
  44.  
  45.     Once you have your working xdm (test it as root:
  46.     xdm -nodaemon) you can have netbsd autostart xdm from
  47.     your /etc/ttys file.  Here's two lines from my file
  48.     so you can see what to change/add:
  49.  
  50. #console "/usr/libexec/getty std.9600" vt200 on secure       # ITE console
  51. console "/usr/bin/X11/xdm -nodaemon" vt200 on secure
  52.  
  53.     Warning: if you don't have fixed xdm binary, then xdm will
  54.     not let you login if you have ANY password at all.  You can
  55.     vipw and remove your password and use the xdm distributed
  56.     by the french genii :-)
  57.  
  58.     Another X tip: you can use xmodmap to remap your mouse buttons
  59.     on a two button mouse.  I needed this so I could select with
  60.     left button and paste with right (in xterm, etc.).  To do this,
  61.     add to your ~/.xsession:
  62.         xmodmap  -e "pointer = 1 3 2"
  63.  
  64. mykes@shell.portal.com
  65.  
  66.