[9fans] vmware fusion 3.0.1 and VESA
Hello list, I am using plan9 on vmware fusion 3.0.1 and VESA mode doesn't work for me. For example, aux/vga –m vesa –p hangs the virtual machine. The biggest screen size I can get to, without VESA, is monitor=multisync135 vgasize=1024x768x32 and anything bigger causes kernel panic. What monitor/vgasize combination works for you, preferably bigger one than above? Also, does the mouse one-three combination work in acme?
Re: [9fans] sheevaplug port available
I tried compiling 9plug kernel and got an error: mk: no recipe to make 'sdscsi.5' in directory /sys/src/9/kw Do I need to copy /sys/src/9/pc/sdscsi.c , or edit plug conf file?
Re: [9fans] sheevaplug port available
Thank you. It is compiling OK now. On Sun, Feb 28, 2010 at 3:06 PM, wrote: > Sorry, I'd forgotten to push /sys/src/9/kw/sdscsi.c to sources. > It's fixed now. > > >
Re: [9fans] Local variables and rc functions
if you want to delay the expansion of an env var until fn invocation,,use eval. % fn foo {eval echo $$bar} On 8/14/08, roger peppe <[EMAIL PROTECTED]> wrote: > looks like a bug to me; after all: > > % bar=baz {echo $bar} > baz > % > > i'm somewhat surprised this hasn't been fixed years ago. > > On Wed, Aug 13, 2008 at 10:27 PM, Micah Stetson <[EMAIL PROTECTED]> > wrote: >> Is this a bug? >> >> % fn foo { echo $bar } >> % bar=baz foo >> >> % >> >> I would expect to see baz instead of a blank line. >> >> Micah
Re: [9fans] Local variables and rc functions
i apologize for the noise. i should have tested befoqe posting. rog, thank you for correcting me. On 8/14/08, roger peppe <[EMAIL PROTECTED]> wrote: > On Thu, Aug 14, 2008 at 12:20 PM, kazumi iwane <[EMAIL PROTECTED]> wrote: >> if you want to delay the expansion of an env var until fn invocation,,use >> eval. >> >> % fn foo {eval echo $$bar} > > sorry, but that's so, so wrong. > > 1) $$bar gives the value of the variable > named by the contents of the variable bar, > so that the above, given that $bar contains 'baz' > will echo $baz. > > 2) $$bar above is evaluated _before_ eval is invoked, > so the line is not very different from {echo $$bar}, except that > if $$bar holds any syntax characters they'll get interpreted by the shell. > it's almost never necessary to use eval with rc. > > 3) expansion of env. vars *is* delayed until fn invocation. > e.g. > % fn foo {echo $bar} > % bar = baz > % foo > baz > % > > it just seems as if the local variable assignment isn't propagated > into the fn context. i don't have time to look into it now (i really > shouldn't be spending time writing this email, but i couldn't resist the > bait). > > rog. > >