9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] trying to populate arm tree
@ 2013-01-28 12:46 James Chapman
  2013-01-28 14:32 ` Jens Staal
  2013-01-28 14:53 ` Federico G. Benavento
  0 siblings, 2 replies; 20+ messages in thread
From: James Chapman @ 2013-01-28 12:46 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hi,

I would like to boot my 9pi using an fs from a 386 based cpu/auth/fossil server.

I have previously installed:

fgb/z
fgb/bz2
fgb/openssl
bichued/python
stallion/mercurial

and go from the development repo, and I was planning on putting kertex on there too.

I tried cpuing into the server and running

cpu% cd /sys/src
cpu% objtype=arm mk install

The build fails with a lot of cpp errors about /sys/include/ape/openssl/*.h

about unknown object type.

How can i exclude openssl from the build? 

I'm assuming I won't be able to build it. I can put up with cpuing in to run the extra stuff I have installed.

I tried adding openssl to BUGGERED in /sys/src/cmd/mkfile but this didn't help.

James




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 12:46 [9fans] trying to populate arm tree James Chapman
@ 2013-01-28 14:32 ` Jens Staal
  2013-01-28 14:53 ` Federico G. Benavento
  1 sibling, 0 replies; 20+ messages in thread
From: Jens Staal @ 2013-01-28 14:32 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Monday 28 January 2013 14.46.38 James Chapman wrote:

>
> The build fails with a lot of cpp errors about /sys/include/ape/openssl/*.h
>
> about unknown object type.
>
> How can i exclude openssl from the build?
>
> I'm assuming I won't be able to build it. I can put up with cpuing in to run
> the extra stuff I have installed.
>
> I tried adding openssl to BUGGERED in /sys/src/cmd/mkfile but this didn't
> help.
>
> James

specifically for this reason, I have repackaged a couple of ports and put "non
core" packages/ports under /sys/src/pkg/$packagename. Because of this, my
/sys/src/ape/lib is clean and I could without problems build for all supported
architectures (could come in handy if I ever want to cross-compile one of my
ports to another architecture) with "mk installall" - with one exception:
/sys/src/ape/lib/ap/mips/lock.c contained functions where the compiler
complained about missing return values.

I have a tarball on my Plan9 machine where I repackaged fgb's openssl to put
the sources in /sys/src/pkg/openssl (and
added a #pragma lib to libssl and libcrypt in a header I think).

My initial plan was to try to build a newer openssl but it was far too
complicated (the tarball contains symlinks that disappear on Plan9 and
Configure required Perl).

If you want I could upload this one.
for libz and libbz2 I can also offer updated ports
can be found at /n/sources/contrib/staal1978/pkg/



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 12:46 [9fans] trying to populate arm tree James Chapman
  2013-01-28 14:32 ` Jens Staal
@ 2013-01-28 14:53 ` Federico G. Benavento
  2013-01-28 15:07   ` Federico G. Benavento
                     ` (2 more replies)
  1 sibling, 3 replies; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 14:53 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

I fixed openssl, I'll push it when sources is back up again, just
remove the error
from opensslconf.h.

python needs a mkfile rework.

Dec  6 07:52:28 ART 2012
/n/dump/2013/0128/sys/include/ape/openssl/opensslconf.h 6308 [fgb]
87,88d86
< #else
< #error unknown objtype
Jan 22 09:27:24 ART 2008
/n/dump/2012/1206/sys/include/ape/openssl/opensslconf.h 6337 [fgb]

On Mon, Jan 28, 2013 at 10:46 AM, James Chapman <james@cs.ioc.ee> wrote:
> Hi,
>
> I would like to boot my 9pi using an fs from a 386 based cpu/auth/fossil server.
>
> I have previously installed:
>
> fgb/z
> fgb/bz2
> fgb/openssl
> bichued/python
> stallion/mercurial
>
> and go from the development repo, and I was planning on putting kertex on there too.
>
> I tried cpuing into the server and running
>
> cpu% cd /sys/src
> cpu% objtype=arm mk install
>
> The build fails with a lot of cpp errors about /sys/include/ape/openssl/*.h
>
> about unknown object type.
>
> How can i exclude openssl from the build?
>
> I'm assuming I won't be able to build it. I can put up with cpuing in to run the extra stuff I have installed.
>
> I tried adding openssl to BUGGERED in /sys/src/cmd/mkfile but this didn't help.
>
> James
>
>



--
Federico G. Benavento



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 14:53 ` Federico G. Benavento
@ 2013-01-28 15:07   ` Federico G. Benavento
  2013-01-28 15:38     ` James Chapman
  2013-01-28 15:30   ` James Chapman
  2013-01-28 15:32   ` erik quanstrom
  2 siblings, 1 reply; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 15:07 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

z and python:

Jan 19 10:46:03 ART 2012 /n/dump/2013/0128/sys/src/ape/lib/z/mkfile 603 [fgb]
39c39
< CFLAGS=-c
---
> CFLAGS=-c -D_C99_SNPRINTF_EXTENSION


diff /n/dump/2013/0128/sys/src/cmd/python/Parser/mkfile
/sys/src/cmd/python/Parser/mkfile
40,41c40,41
< 	../Objects/obmalloc.$O\
< 	../Python/mysnprintf.$O\
---
> 	obmalloc.$O\
> 	mysnprintf.$O\
44a45,50
>
> obmalloc.$O: ../Objects/obmalloc.c
> 	$CC $CFLAGS $prereq
>
> mysnprintf.$O: ../Python/mysnprintf.c
> 	$CC $CFLAGS $prereq
Jan 28 11:23:26 ART 2013 /sys/src/cmd/python/plan9.c 765 [fgb]
8a9,10
> #elif defined(Tarm)
> #define	FPINVAL	(1<<8)
Jan 28 11:22:23 ART 2013 /sys/src/cmd/python/pyconfig.h 27800 [fgb]
11a12
> #define _C99_SNPRINTF_EXTENSION


On Mon, Jan 28, 2013 at 11:53 AM, Federico G. Benavento
<benavento@gmail.com> wrote:
> I fixed openssl, I'll push it when sources is back up again, just
> remove the error
> from opensslconf.h.
>
> python needs a mkfile rework.
>
> Dec  6 07:52:28 ART 2012
> /n/dump/2013/0128/sys/include/ape/openssl/opensslconf.h 6308 [fgb]
> 87,88d86
> < #else
> < #error unknown objtype
> Jan 22 09:27:24 ART 2008
> /n/dump/2012/1206/sys/include/ape/openssl/opensslconf.h 6337 [fgb]
>
> On Mon, Jan 28, 2013 at 10:46 AM, James Chapman <james@cs.ioc.ee> wrote:
>> Hi,
>>
>> I would like to boot my 9pi using an fs from a 386 based cpu/auth/fossil server.
>>
>> I have previously installed:
>>
>> fgb/z
>> fgb/bz2
>> fgb/openssl
>> bichued/python
>> stallion/mercurial
>>
>> and go from the development repo, and I was planning on putting kertex on there too.
>>
>> I tried cpuing into the server and running
>>
>> cpu% cd /sys/src
>> cpu% objtype=arm mk install
>>
>> The build fails with a lot of cpp errors about /sys/include/ape/openssl/*.h
>>
>> about unknown object type.
>>
>> How can i exclude openssl from the build?
>>
>> I'm assuming I won't be able to build it. I can put up with cpuing in to run the extra stuff I have installed.
>>
>> I tried adding openssl to BUGGERED in /sys/src/cmd/mkfile but this didn't help.
>>
>> James
>>
>>
>
>
>
> --
> Federico G. Benavento



--
Federico G. Benavento



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 14:53 ` Federico G. Benavento
  2013-01-28 15:07   ` Federico G. Benavento
@ 2013-01-28 15:30   ` James Chapman
  2013-01-28 16:47     ` Federico G. Benavento
  2013-01-28 15:32   ` erik quanstrom
  2 siblings, 1 reply; 20+ messages in thread
From: James Chapman @ 2013-01-28 15:30 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs


On Jan 28, 2013, at 4:53 PM, "Federico G. Benavento" <benavento@gmail.com> wrote:

> I fixed openssl, I'll push it when sources is back up again, just
> remove the error
> from opensslconf.h.
> 
> python needs a mkfile rework.
> 
> Dec  6 07:52:28 ART 2012
> /n/dump/2013/0128/sys/include/ape/openssl/opensslconf.h 6308 [fgb]
> 87,88d86
> < #else
> < #error unknown objtype
> Jan 22 09:27:24 ART 2008
> /n/dump/2012/1206/sys/include/ape/openssl/opensslconf.h 6337 [fgb]

I removed the two lines above from /sys/include/ape/openssl/opensslconf.h

It gets further but fails here:

/sys/src/ape/lib/openssl/apps/openssl.c:364[stdin:85783] no return at end of function: main



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 14:53 ` Federico G. Benavento
  2013-01-28 15:07   ` Federico G. Benavento
  2013-01-28 15:30   ` James Chapman
@ 2013-01-28 15:32   ` erik quanstrom
  2013-01-28 15:53     ` Federico G. Benavento
  2013-01-28 16:25     ` Jacob Todd
  2 siblings, 2 replies; 20+ messages in thread
From: erik quanstrom @ 2013-01-28 15:32 UTC (permalink / raw)
  To: benavento, 9fans

> python needs a mkfile rework.

i'm afraid it's more serious than that.  python is out of date,
only compiles for 386, there are file i/o problems, etc,
it drags along openssh/openssl, and isn't pushed upstream.

jeff is working on a addressing all these issues with the latest
2.x python.  it will be put on sources when its ready.

- erik



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 15:07   ` Federico G. Benavento
@ 2013-01-28 15:38     ` James Chapman
  0 siblings, 0 replies; 20+ messages in thread
From: James Chapman @ 2013-01-28 15:38 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs


On Jan 28, 2013, at 5:07 PM, "Federico G. Benavento" <benavento@gmail.com> wrote:

> z and python:
> 
> Jan 19 10:46:03 ART 2012 /n/dump/2013/0128/sys/src/ape/lib/z/mkfile 603 [fgb]
> 39c39
> < CFLAGS=-c
> ---
>> 
> 

My z/mkfile already has:

CFLAGS=-c -D_C99_SNPRINTF_EXTENSION

and was already working I think.

James

P.S. Thanks for looking into this!


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 15:32   ` erik quanstrom
@ 2013-01-28 15:53     ` Federico G. Benavento
  2013-01-28 16:25     ` Jacob Todd
  1 sibling, 0 replies; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 15:53 UTC (permalink / raw)
  To: erik quanstrom; +Cc: 9fans

I just compiled it for arm with my changes… haven't tested it though.

lotte% file /arm/bin/python 
/arm/bin/python: arm plan 9 executable

how does one get https without openssl, do you have to reimplement
tons of things?

On Jan 28, 2013, at 12:32 PM, erik quanstrom <quanstro@quanstro.net> wrote:

>> python needs a mkfile rework.
> 
> i'm afraid it's more serious than that.  python is out of date,
> only compiles for 386, there are file i/o problems, etc, 
> it drags along openssh/openssl, and isn't pushed upstream.
> 
> jeff is working on a addressing all these issues with the latest
> 2.x python.  it will be put on sources when its ready.
> 
> - erik

---
Federico G. Benavento
benavento@gmail.com






^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 15:32   ` erik quanstrom
  2013-01-28 15:53     ` Federico G. Benavento
@ 2013-01-28 16:25     ` Jacob Todd
  2013-01-28 16:40       ` Matthew Veety
  2013-01-28 16:40       ` Federico G. Benavento
  1 sibling, 2 replies; 20+ messages in thread
From: Jacob Todd @ 2013-01-28 16:25 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Mon, Jan 28, 2013 at 10:32 AM, erik quanstrom <quanstro@quanstro.net> wrote:
>> python needs a mkfile rework.
>
> i'm afraid it's more serious than that.  python is out of date,
> only compiles for 386, there are file i/o problems, etc,
> it drags along openssh/openssl, and isn't pushed upstream.
>
> jeff is working on a addressing all these issues with the latest
> 2.x python.  it will be put on sources when its ready.
>
> - erik
>

This is fixed in 9front, if someone wanted to pull in the fixes.



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 16:25     ` Jacob Todd
@ 2013-01-28 16:40       ` Matthew Veety
  2013-01-28 16:40       ` Federico G. Benavento
  1 sibling, 0 replies; 20+ messages in thread
From: Matthew Veety @ 2013-01-28 16:40 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

If you're using python on arm there are still a lot of issues that need working out. I can give specifics once I get home. 

On Jan 28, 2013, at 11:25, Jacob Todd <jaketodd422@gmail.com> wrote:

> On Mon, Jan 28, 2013 at 10:32 AM, erik quanstrom <quanstro@quanstro.net> wrote:
>>> python needs a mkfile rework.
>> 
>> i'm afraid it's more serious than that.  python is out of date,
>> only compiles for 386, there are file i/o problems, etc,
>> it drags along openssh/openssl, and isn't pushed upstream.
>> 
>> jeff is working on a addressing all these issues with the latest
>> 2.x python.  it will be put on sources when its ready.
>> 
>> - erik
> 
> This is fixed in 9front, if someone wanted to pull in the fixes.
> 



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 16:25     ` Jacob Todd
  2013-01-28 16:40       ` Matthew Veety
@ 2013-01-28 16:40       ` Federico G. Benavento
  1 sibling, 0 replies; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 16:40 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

what is fixed?

On Jan 28, 2013, at 1:25 PM, Jacob Todd <jaketodd422@gmail.com> wrote:

> On Mon, Jan 28, 2013 at 10:32 AM, erik quanstrom <quanstro@quanstro.net> wrote:
>>> python needs a mkfile rework.
>> 
>> i'm afraid it's more serious than that.  python is out of date,
>> only compiles for 386, there are file i/o problems, etc,
>> it drags along openssh/openssl, and isn't pushed upstream.
>> 
>> jeff is working on a addressing all these issues with the latest
>> 2.x python.  it will be put on sources when its ready.
>> 
>> - erik
>> 
> 
> This is fixed in 9front, if someone wanted to pull in the fixes.
> 

---
Federico G. Benavento
benavento@gmail.com






^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 15:30   ` James Chapman
@ 2013-01-28 16:47     ` Federico G. Benavento
  2013-01-28 17:20       ` James Chapman
  0 siblings, 1 reply; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 16:47 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> 
> It gets further but fails here:
> 
> /sys/src/ape/lib/openssl/apps/openssl.c:364[stdin:85783] no return at end of function: main
> 


add -B to CFLAGS in apps/mkfile

---
Federico G. Benavento
benavento@gmail.com






^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 16:47     ` Federico G. Benavento
@ 2013-01-28 17:20       ` James Chapman
  2013-01-28 17:40         ` Jeff Sickel
  2013-01-29 22:02         ` Richard Miller
  0 siblings, 2 replies; 20+ messages in thread
From: James Chapman @ 2013-01-28 17:20 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On Jan 28, 2013, at 6:47 PM, Federico G. Benavento <benavento@gmail.com> wrote:
>> It gets further but fails here:
>> /sys/src/ape/lib/openssl/apps/openssl.c:364[stdin:85783] no return at end of function: main
> add -B to CFLAGS in apps/mkfile

Thanks, that did it.

I then had to create a directory /arm/bin/contrib to get contrib/gui to install.

Then python failed so I added it to BUGGERED IN /sys/src/cmd/mkfile. (I haven't tried your changes yet).

Then I got some permission denied errors in /mail/lib trying to overwrite files owned by upas (and group upas), so I added upas to BUGGERED too.

and with that the build finished!

Many thanks,

James


^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 17:20       ` James Chapman
@ 2013-01-28 17:40         ` Jeff Sickel
  2013-01-28 18:21           ` erik quanstrom
  2013-01-29 22:07           ` Richard Miller
  2013-01-29 22:02         ` Richard Miller
  1 sibling, 2 replies; 20+ messages in thread
From: Jeff Sickel @ 2013-01-28 17:40 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

A few things to note:

- there are a lot of contrib packages that just don't build well on arm
- try to keep /sys/src/ape/lib fairly clean as Richard has with rpi
  - I've learned my lesson and brought /sys/src/ape back in line
    with sources.
- I have source to build libsec and libmp for ape on sources:
	/n/sources/contrib/jas/src/ape-9mpsec.tar.gz
    It needs a bit more testing, but does work with my upcoming
    Python2.7 release and allows me to gut OpenSSL from the Python
    dependency tree.
- we _may_ want to update /sys/src/cmd/bzip2 to a more modern version as
    it's very likely that bzwrite.c needs to be brought in line with
    the bzip2 1.0.6.

My upcoming Python2.7 port does depend on bzip2 as the bz2module is now
standard.  I can use /sys/src/cmd/bzip2/lib but it causes a few python
test failures specific to bzwrite.  If someone wants to put the effort
into bringing Russ' old bzip2 port up to current source that would be
great.  Otherwise I'll just wrap the APE build of Python with it's own
bzip2 libs.

-jas


On Jan 28, 2013, at 11:20 AM, James Chapman <james@cs.ioc.ee> wrote:

> On Jan 28, 2013, at 6:47 PM, Federico G. Benavento <benavento@gmail.com> wrote:
>>> It gets further but fails here:
>>> /sys/src/ape/lib/openssl/apps/openssl.c:364[stdin:85783] no return at end of function: main
>> add -B to CFLAGS in apps/mkfile
> 
> Thanks, that did it.
> 
> I then had to create a directory /arm/bin/contrib to get contrib/gui to install.
> 
> Then python failed so I added it to BUGGERED IN /sys/src/cmd/mkfile. (I haven't tried your changes yet).
> 
> Then I got some permission denied errors in /mail/lib trying to overwrite files owned by upas (and group upas), so I added upas to BUGGERED too.
> 
> and with that the build finished!
> 
> Many thanks,
> 
> James




^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 17:40         ` Jeff Sickel
@ 2013-01-28 18:21           ` erik quanstrom
  2013-01-28 18:26             ` Federico G. Benavento
  2013-01-29 22:07           ` Richard Miller
  1 sibling, 1 reply; 20+ messages in thread
From: erik quanstrom @ 2013-01-28 18:21 UTC (permalink / raw)
  To: 9fans

On Mon Jan 28 12:41:01 EST 2013, jas@corpus-callosum.com wrote:
> A few things to note:
>
> - there are a lot of contrib packages that just don't build well on arm

or anything that's not x86.

- erik



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 18:21           ` erik quanstrom
@ 2013-01-28 18:26             ` Federico G. Benavento
  2013-01-28 20:10               ` erik quanstrom
  0 siblings, 1 reply; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 18:26 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs


On Jan 28, 2013, at 3:21 PM, erik quanstrom <quanstro@quanstro.net> wrote:

> or anything that's not x86.

I have openssl-1.0.1c it builds on arm too...

---
Federico G. Benavento
benavento@gmail.com






^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 18:26             ` Federico G. Benavento
@ 2013-01-28 20:10               ` erik quanstrom
  2013-01-28 20:14                 ` Federico G. Benavento
  0 siblings, 1 reply; 20+ messages in thread
From: erik quanstrom @ 2013-01-28 20:10 UTC (permalink / raw)
  To: 9fans

On Mon Jan 28 13:27:19 EST 2013, benavento@gmail.com wrote:
> 
> On Jan 28, 2013, at 3:21 PM, erik quanstrom <quanstro@quanstro.net> wrote:
> 
> > or anything that's not x86.  
> 
> I have openssl-1.0.1c it builds on arm too...

(have you tested it?)

i don't think anyone said there are no contrib packages
that compile for arm, just that there are a number of
packages—especially ape ports—that either don't compile
or don't run correctly except on x86.

also, there are contrib packages that break other parts
of the system.  and contrib packages that can't be rebuilt.

contrib is supposed to be the wild wild west.  but it would
be nice to have a list of packages known to comple & run
on all the common arches, and also not break anything else.

- erik



^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 20:10               ` erik quanstrom
@ 2013-01-28 20:14                 ` Federico G. Benavento
  0 siblings, 0 replies; 20+ messages in thread
From: Federico G. Benavento @ 2013-01-28 20:14 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs


On Jan 28, 2013, at 5:10 PM, erik quanstrom <quanstro@quanstro.net> wrote:

> On Mon Jan 28 13:27:19 EST 2013, benavento@gmail.com wrote:
>>
>> On Jan 28, 2013, at 3:21 PM, erik quanstrom <quanstro@quanstro.net> wrote:
>>
>>> or anything that's not x86.
>>
>> I have openssl-1.0.1c it builds on arm too...
>
> (have you tested it?)
>


it was built for the first time a couple of hours ago :)

---
Federico G. Benavento
benavento@gmail.com






^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 17:20       ` James Chapman
  2013-01-28 17:40         ` Jeff Sickel
@ 2013-01-29 22:02         ` Richard Miller
  1 sibling, 0 replies; 20+ messages in thread
From: Richard Miller @ 2013-01-29 22:02 UTC (permalink / raw)
  To: 9fans

> Then I got some permission denied errors in /mail/lib trying to overwrite files owned by upas (and group upas), so I added upas to BUGGERED too.

No need to do that.  Just add the user who is going to run the
'mk install' into group upas.  It must already be in group sys
or you wouldn't be getting very far.





^ permalink raw reply	[flat|nested] 20+ messages in thread

* Re: [9fans] trying to populate arm tree
  2013-01-28 17:40         ` Jeff Sickel
  2013-01-28 18:21           ` erik quanstrom
@ 2013-01-29 22:07           ` Richard Miller
  1 sibling, 0 replies; 20+ messages in thread
From: Richard Miller @ 2013-01-29 22:07 UTC (permalink / raw)
  To: 9fans

> - try to keep /sys/src/ape/lib fairly clean as Richard has with rpi

? not sure what you mean by "fairly clean".  The rpi port doesn't
touch anything outside /sys/src/9/bcm.  Well, just some band-aid fixes
to the usb mouse driver but they're not specific to ARMs.




^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2013-01-29 22:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-28 12:46 [9fans] trying to populate arm tree James Chapman
2013-01-28 14:32 ` Jens Staal
2013-01-28 14:53 ` Federico G. Benavento
2013-01-28 15:07   ` Federico G. Benavento
2013-01-28 15:38     ` James Chapman
2013-01-28 15:30   ` James Chapman
2013-01-28 16:47     ` Federico G. Benavento
2013-01-28 17:20       ` James Chapman
2013-01-28 17:40         ` Jeff Sickel
2013-01-28 18:21           ` erik quanstrom
2013-01-28 18:26             ` Federico G. Benavento
2013-01-28 20:10               ` erik quanstrom
2013-01-28 20:14                 ` Federico G. Benavento
2013-01-29 22:07           ` Richard Miller
2013-01-29 22:02         ` Richard Miller
2013-01-28 15:32   ` erik quanstrom
2013-01-28 15:53     ` Federico G. Benavento
2013-01-28 16:25     ` Jacob Todd
2013-01-28 16:40       ` Matthew Veety
2013-01-28 16:40       ` Federico G. Benavento

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).