Re: Cross-compile worked, cross-install not so much ...

2022-05-01 Thread Mark Millard
Patrick M. Hausen wrote on Date: Sun, 1 May 2022 17:29:27 +0200 : > > Am 26.04.2022 um 17:47 schrieb bob prohaska : > > If the result is unsatisfactory, self-hosting isn't impossible. I've been > > doing it for a few years now, albeit with much help from the list. On a > > Pi3 running aarch64

Re: Cross-compile worked, cross-install not so much ...

2022-05-01 Thread Patrick M. Hausen
Hi all, > Am 26.04.2022 um 17:47 schrieb bob prohaska : > If the result is unsatisfactory, self-hosting isn't impossible. I've been > doing it for a few years now, albeit with much help from the list. On a > Pi3 running aarch64 memory and swap are a constraint. I'd suggest 4 GB > of swap and -j2

Re: Cross-compile worked, cross-install not so much ...

2022-04-26 Thread Patrick M. Hausen
Hi all, I just threw a bit of hardware at the problem for now. In addition to the seven-node TuringPi that I would like to run with FreeBSD after I cannot make Raspbian run stable even when completely idle I have another actively cooled single CM3+ system (the "pi8" you saw in my first post) So

Re: Cross-compile worked, cross-install not so much ...

2022-04-26 Thread Patrick M. Hausen
Hi all, > Am 25.04.2022 um 21:54 schrieb Warner Losh : > Cross installing is supported. Native installing of a cross build world isn't. > > When I've had to do this in the past, I've just mounted the embedded system > on my > beefy server under /mumble (allowing root on the embedded system for

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Paul Mather
On Apr 25, 2022, at 3:26 PM, Patrick M. Hausen wrote: > Hi, > >> Am 25.04.2022 um 21:18 schrieb Brooks Davis : >> Cross install is not supported. As you have seen, certain tools are >> bootstrapped on the build host and used during the install process. You >> might be able to get away with

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Brooks Davis
On Mon, Apr 25, 2022 at 09:26:04PM +0200, Patrick M. Hausen wrote: > Hi, > > > Am 25.04.2022 um 21:18 schrieb Brooks Davis : > > Cross install is not supported. As you have seen, certain tools are > > bootstrapped on the build host and used during the install process. You > > might be able to

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Klaus Kuechemann
You can : - setenv DESTDIR /wherever make -jWhatever TARGET_ARCH=aarch64 -DNO_ROOT DESTDIR=$DESTDIR installworld make -jWhatever TARGET_ARCH=aarch64 -DNO_ROOT DESTDIR=$DESTDIR distribution make -jWhatever TARGET_ARCH=aarch64 -DNO_ROOT DESTDIR=$DESTDIR installkernel - Patrick M. Hausen wrote:

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Warner Losh
On Mon, Apr 25, 2022 at 1:26 PM Patrick M. Hausen wrote: > Hi, > > > Am 25.04.2022 um 21:18 schrieb Brooks Davis : > > Cross install is not supported. As you have seen, certain tools are > > bootstrapped on the build host and used during the install process. You > > might be able to get away

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Mehmet Erol Sanliturk
On Mon, Apr 25, 2022 at 10:26 PM Patrick M. Hausen wrote: > Hi, > > > Am 25.04.2022 um 21:18 schrieb Brooks Davis : > > Cross install is not supported. As you have seen, certain tools are > > bootstrapped on the build host and used during the install process. You > > might be able to get away

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Patrick M. Hausen
Hi, > Am 25.04.2022 um 21:18 schrieb Brooks Davis : > Cross install is not supported. As you have seen, certain tools are > bootstrapped on the build host and used during the install process. You > might be able to get away with nuking > /usr/obj/usr/src/arm64.aarch64/tmp/legacy (or maybe tmp)

Re: Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Brooks Davis
On Mon, Apr 25, 2022 at 09:07:47PM +0200, Patrick M. Hausen wrote: > Hi all, > > getting into FreeBSD ARM64 I tried to compile a current system on a fast > AMD64 VM and > now I am somewhat stuck - no help using search engines and the like. > > 1st step: > > # checkout main aka 14-CURRENT

Cross-compile worked, cross-install not so much ...

2022-04-25 Thread Patrick M. Hausen
Hi all, getting into FreeBSD ARM64 I tried to compile a current system on a fast AMD64 VM and now I am somewhat stuck - no help using search engines and the like. 1st step: # checkout main aka 14-CURRENT cd /usr/src make -j 8 TARGET=arm64 TARGET_ARCH=aarch64 buildworld