Page MenuHomeFreeBSD

Introduce bsd.sysdir.mk to consolidate looking for the kernel.
ClosedPublic

Authored by imp on Oct 24 2019, 6:15 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Nov 30, 6:59 PM
Unknown Object (File)
Fri, Nov 29, 9:41 PM
Unknown Object (File)
Nov 25 2024, 3:42 PM
Unknown Object (File)
Nov 25 2024, 2:21 PM
Unknown Object (File)
Nov 22 2024, 10:01 PM
Unknown Object (File)
Nov 22 2024, 12:13 PM
Unknown Object (File)
Nov 21 2024, 10:11 AM
Unknown Object (File)
Nov 20 2024, 5:56 AM

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 27205
Build 25471: arc lint + arc unit

Event Timeline

I guess the extra directories don't hurt. I'm less certain about the implications of the missing checks for an empty KERNBUILDDIR.

share/mk/bsd.dtb.mk
3

Does this need to be wrapped in .if empty(KERNBUILDDIR)?

share/mk/bsd.kmod.mk
3

Same.

sys/conf/kmod.mk
82

Same?

In D22144#484006, @jhb wrote:

I guess the extra directories don't hurt. I'm less certain about the implications of the missing checks for an empty KERNBUILDDIR.

Same concerns but I like the change otherwise.

Ping. The kmod.opts.mk change is a prerequisite for bhyve save/restore, so I'd like to either commit that one as-is and do this cleanup afterwards, or get this one unstuck to make forward progress. I still have questions about the KERNBUILDDIR stuff as I don't fully understand the implications of removing those checks.

share/mk/bsd.dtb.mk
3

No. I don't think so. KERNBUILDDIR I think is actually irrelevant. If SYSDIR being defined or not is all that matters here. When we define it, we also define SYSDIR, so the !defined() is sufficient.

In D22144#484006, @jhb wrote:

I guess the extra directories don't hurt. I'm less certain about the implications of the missing checks for an empty KERNBUILDDIR.

Same concerns but I like the change otherwise.

When we define KERNBUILDDIR, we also define SYSDIR, so checking it is redundant.

This revision is now accepted and ready to land.Nov 14 2019, 12:40 AM

Running a final make universe before committing.
Should be in tomorrow morning if nothing breaks.