Re: 13-BETA3 installation from source problems.

2021-02-28 Thread Marek Zarychta
W dniu 24.02.2021 o 20:03, Kyle Evans pisze: > On Wed, Feb 24, 2021 at 12:57 PM Dean E. Weimer wrote: >> >> On 2021-02-23 12:34 pm, Kyle Evans wrote: >>> The more I look at `make -dm` output, the less sense it makes. Your >>> patch is decidedly correct regardless of how this specific scenario is

Re: 13-BETA3 installation from source problems.

2021-02-25 Thread Dean E. Weimer via freebsd-stable
On 2021-02-24 1:03 pm, Kyle Evans wrote: I've been able to reproduce it locally with a stock config twice or so, but it's non-trivial and only seems to reproduce with at least a nullfs objdir. A good data point would be to point your MAKEOBJDIRPREFIX at /jails/devel/host-usr-obj (assuming

Re: 13-BETA3 installation from source problems.

2021-02-24 Thread Marek Zarychta
W dniu 24.02.2021 o 20:03, Kyle Evans pisze: On Wed, Feb 24, 2021 at 12:57 PM Dean E. Weimer wrote: On 2021-02-23 12:34 pm, Kyle Evans wrote: The more I look at `make -dm` output, the less sense it makes. Your patch is decidedly correct regardless of how this specific scenario is playing out:

Re: 13-BETA3 installation from source problems.

2021-02-24 Thread Warner Losh
Also doing ls -lR from the obj sir for stand before and after installworld might preserve data that may help. Warner On Wed, Feb 24, 2021, 12:04 PM Kyle Evans wrote: > On Wed, Feb 24, 2021 at 12:57 PM Dean E. Weimer > wrote: > > > > On 2021-02-23 12:34 pm, Kyle Evans wrote: > > > The more I

Re: 13-BETA3 installation from source problems.

2021-02-24 Thread Kyle Evans
On Wed, Feb 24, 2021 at 12:57 PM Dean E. Weimer wrote: > > On 2021-02-23 12:34 pm, Kyle Evans wrote: > > The more I look at `make -dm` output, the less sense it makes. Your > > patch is decidedly correct regardless of how this specific scenario is > > playing out: > > > > 1.) As you noted, it's

Re: 13-BETA3 installation from source problems.

2021-02-24 Thread Dean E. Weimer via freebsd-stable
On 2021-02-23 12:34 pm, Kyle Evans wrote: The more I look at `make -dm` output, the less sense it makes. Your patch is decidedly correct regardless of how this specific scenario is playing out: 1.) As you noted, it's wrong to clean something that's built elsewhere. You can reasonably expect

Re: 13-BETA3 installation from source problems.

2021-02-23 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 9:34 pm, Dean E. Weimer wrote: On 2021-02-22 8:55 pm, Dean E. Weimer via freebsd-stable wrote: On 2021-02-22 5:52 pm, Warner Losh wrote: What does this patch do for you? diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile index ad95948ec50a..cbbe15bd1fc0 100644

Re: 13-BETA3 installation from source problems.

2021-02-23 Thread Kyle Evans
The more I look at `make -dm` output, the less sense it makes. Your patch is decidedly correct regardless of how this specific scenario is playing out: 1.) As you noted, it's wrong to clean something that's built elsewhere. You can reasonably expect `make clean all` to work pretty much everywhere

Re: 13-BETA3 installation from source problems.

2021-02-23 Thread Warner Losh
I'm unsure of the mechanics as well. I do know that we shouldn't delete stuff in OTHER directories, though. the btx stuff is trying to do a bit of an end run around the link only with the installed stuff here and using crt0.o as a library from the 'where it was built' directory which I think

Re: 13-BETA3 installation from source problems.

2021-02-23 Thread Kyle Evans
Hi, What I don't understand here is, why are these being considered out-of-date? That seems like it is indicative of a larger problem that we'd surely fall over elsewhere on if not for here, that the source tree's timestamps are post-dated w.r.t. the objdir. Thanks, Kyle Evans On Mon, Feb 22,

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 8:55 pm, Dean E. Weimer via freebsd-stable wrote: On 2021-02-22 5:52 pm, Warner Losh wrote: What does this patch do for you? diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile index ad95948ec50a..cbbe15bd1fc0 100644 --- a/stand/i386/loader/Makefile +++

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 5:52 pm, Warner Losh wrote: What does this patch do for you? diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile index ad95948ec50a..cbbe15bd1fc0 100644 --- a/stand/i386/loader/Makefile +++ b/stand/i386/loader/Makefile @@ -90,7 +90,8 @@ FILES+= ${LOADER}

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Warner Losh
What does this patch do for you? diff --git a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile index ad95948ec50a..cbbe15bd1fc0 100644 --- a/stand/i386/loader/Makefile +++ b/stand/i386/loader/Makefile @@ -90,7 +90,8 @@ FILES+= ${LOADER} FILESMODE_${LOADER}= ${BINMODE} -b # XXX

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 10:53 am, Dean E. Weimer wrote: On 2021-02-22 9:38 am, Dean E. Weimer via freebsd-stable wrote: On 2021-02-22 9:29 am, Warner Losh wrote: On Mon, Feb 22, 2021 at 8:24 AM Dean E. Weimer via freebsd-stable wrote: I was able to successfully build and install BETA2 from source,

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 9:38 am, Dean E. Weimer via freebsd-stable wrote: On 2021-02-22 9:29 am, Warner Losh wrote: On Mon, Feb 22, 2021 at 8:24 AM Dean E. Weimer via freebsd-stable wrote: I was able to successfully build and install BETA2 from source, however I am now attempting to upgrade the same

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
On 2021-02-22 9:29 am, Warner Losh wrote: On Mon, Feb 22, 2021 at 8:24 AM Dean E. Weimer via freebsd-stable wrote: I was able to successfully build and install BETA2 from source, however I am now attempting to upgrade the same machine to BETA3 buildworld and buildkernel complete.

Re: 13-BETA3 installation from source problems.

2021-02-22 Thread Warner Losh
On Mon, Feb 22, 2021 at 8:24 AM Dean E. Weimer via freebsd-stable < freebsd-stable@freebsd.org> wrote: > I was able to successfully build and install BETA2 from source, however > I am now attempting to upgrade the same machine to BETA3 buildworld and > buildkernel complete. installkernel also

13-BETA3 installation from source problems.

2021-02-22 Thread Dean E. Weimer via freebsd-stable
I was able to successfully build and install BETA2 from source, however I am now attempting to upgrade the same machine to BETA3 buildworld and buildkernel complete. installkernel also completes, but installworld fails, it appears to not find a file for i386 boot. I do have a customized