Re: [9fans] Strange VGA thing

2014-08-05 Thread kokamoto
 On Sat, Aug 02, 2014 at 08:48:34AM +0900, kokam...@hera.eonet.ne.jp wrote:
 
 Now I'm writing this main using a pxe booted terminal with the above
 server.
  Maybe it is not true.  I'm checking this now.

No, it was not true.
As I have lab's Plan9 distro. on this machine, I was
confused it.

Now, I changed the /lib/ndb/local of the 9front's server machine's
that terminal item,
from
bootf=/386/9pcf
to
bootf=/386/9bootpxe,
and it solved the problem.
Now I can pxe boot the machine on 9front's environment.

Kenji




Re: [9fans] Strange VGA thing

2014-08-03 Thread kokamoto
 On Sat, Aug 02, 2014 at 08:48:34AM +0900, kokam...@hera.eonet.ne.jp wrote:
 realmodemem file is provided by the '#P' kernel device.
 realmode file is provided by aux/realemu.
 
 9/pc/devvesa.c has both of them.
Sorry, it was 9/pc/vgavesa.c.

Anyway, now I have file/auth/cpu server on this A68N-5000 machine
with 1680x1050x32 resolution.   During this process, the problem
disappeared.   Now I have /dev/realmode.   I don't know why.

Now I'm writing this main using a pxe booted terminal with the above
server.

Kenji




Re: [9fans] Strange VGA thing

2014-08-03 Thread kokamoto
 On Sat, Aug 02, 2014 at 08:48:34AM +0900, kokam...@hera.eonet.ne.jp wrote:

 Now I'm writing this main using a pxe booted terminal with the above
 server.
 Maybe it is not true.  I'm checking this now.

By the way, this mail is written from a win7 machine drawtermed to
the A68N-5000 9front file/auth/cpu server!

Kenji




Re: [9fans] Strange VGA thing

2014-08-01 Thread Nick Owens
On Sat, Aug 02, 2014 at 08:48:34AM +0900, kokam...@hera.eonet.ne.jp wrote:
 A68N-5000 motherboard which I'm using it for vesa mode of1400x1050x16 size.
 However, there is /dev/realmodemem, but no /dev/realmode.

realmodemem file is provided by the '#P' kernel device.
realmode file is provided by aux/realemu.

in /rc/bin/termrc, aux/realemu is run if $monitor is vesa. strange that
it does not.

maybe realemu had an error. you can try to run it by hand on the
console. there are debugging options you can provide to it.

 PS. 
 9front-ow...@ttr.inri.net is working?

http://9front.org/lists.html



pgpneRfcqhSm_.pgp
Description: PGP signature


Re: [9fans] Strange VGA thing

2014-08-01 Thread sl
 A68N-5000 motherboard which I'm using it for vesa mode of1400x1050x16 size.
 However, there is /dev/realmodemem, but no /dev/realmode.
 
 My plan9.ini file has monitor=vesa line.
 Strange!
 Why I can have working screen with 1400x1050x16?

The /rc/bin/termrc script does this:

@{
rfork n
if(~ $monitor vesa)
aux/realemu
aux/vga -l $vgasize
}

so realemu is most likely not running in your namespace.


 9front-ow...@ttr.inri.net is working?

The correct way to subscribe to the 9front mailing list is to
send a message with a body that just says subscribe (no quotes)
to 9front-ow...@9front.org. After subscribing, list messages are
sent to and received from 9fr...@9front.org.

sl



Re: [9fans] Strange VGA thing

2014-08-01 Thread erik quanstrom
 The /rc/bin/termrc script does this:
 
   @{
   rfork n
   if(~ $monitor vesa)
   aux/realemu
   aux/vga -l $vgasize
   }
 
 so realemu is most likely not running in your namespace.

9atom does similar.  this has caused a few questions, so i feel
that it's really not worth the trouble to save a mb or two.  gotchas
are expensive.  i'll probablly change this when i get a chance.

- erik



Re: [9fans] Strange VGA thing

2014-08-01 Thread kokamoto
 On Sat, Aug 02, 2014 at 08:48:34AM +0900, kokam...@hera.eonet.ne.jp wrote:
 realmodemem file is provided by the '#P' kernel device.
 realmode file is provided by aux/realemu.

9/pc/devvesa.c has both of them.
 
My interesting poit is why I have 1400x1050x16 display
which should be vesa mide.

Kenji




Re: [9fans] Strange VGA thing

2014-08-01 Thread sl
  realmodemem file is provided by the '#P' kernel device.
  realmode file is provided by aux/realemu.
 
 9/pc/devvesa.c has both of them.
  
 My interesting poit is why I have 1400x1050x16 display
 which should be vesa mide.

The workings of realemu are explained in the realemu(8) man page. Basically,
the realemu program provides the /dev/realmode synthetic file.

sl