Page MenuHomeFreeBSD

jrtc27 (Jessica Clarke)
User

Projects

User Details

User Since
Jul 4 2018, 7:23 PM (387 w, 12 h)

Recent Activity

Yesterday

jrtc27 requested changes to D52303: build/newvers: Use language-agnostic (ISO 8601) timestamp format during build and newvers.

I believe the right thing to do is just set LC_ALL=C in the places where it matters. Seconds since epoch is a horrible format to put in human-readable strings. Most of the existing uses of date already set LC_ALL=C, either explicitly for that command or implicitly from earlier in the script (such as both newvers.sh).

Wed, Dec 3, 8:08 PM
jrtc27 added a comment to D52303: build/newvers: Use language-agnostic (ISO 8601) timestamp format during build and newvers.

There was nothing for me to check. My concern was how human-unfriendly the format is.

Wed, Dec 3, 8:05 PM
jrtc27 requested changes to D52330: clang 19/20 needs the real linker name.

My existing comments still stand. AFAICT the latest revision just rebased it?

Wed, Dec 3, 6:47 PM
jrtc27 added a comment to D54018: ctfmerge: fix segfault when building on macOS.

Why not just replace the entirety of barrier.[ch] with pthread_barrier(3)?

I had the same thought, but apparently macOS doesn't implement it.

Wed, Dec 3, 6:44 PM
jrtc27 added a comment to D54018: ctfmerge: fix segfault when building on macOS.

Why not just replace the entirety of barrier.[ch] with pthread_barrier(3)?

Wed, Dec 3, 6:11 PM

Mon, Dec 1

jrtc27 committed rG5f529f9e292a: libc: Fix TESTSDIR for new stdbit tests (authored by jrtc27).
libc: Fix TESTSDIR for new stdbit tests
Mon, Dec 1, 2:10 PM

Fri, Nov 28

jrtc27 added inline comments to D53947: Add sys/_align.h replacing machine/_align.h.
Fri, Nov 28, 3:15 PM
jrtc27 added inline comments to D53947: Add sys/_align.h replacing machine/_align.h.
Fri, Nov 28, 3:14 PM

Thu, Nov 27

jrtc27 added inline comments to D53947: Add sys/_align.h replacing machine/_align.h.
Thu, Nov 27, 3:48 PM
jrtc27 added a comment to D53947: Add sys/_align.h replacing machine/_align.h.

_ALIGNBYTES seems a bit underspecified and/or fraught. max_align_t is often higher than void * thanks to long double and/or int128. It would probably be more prudent to adapt to being explicit about what alignment each use case needs; many probably should be using max_align_t, or alignof(some struct being allocated). Then _ALIGNBYTES can remain for legacy use cases like cmsghdr where it's part of the ABI.

Thu, Nov 27, 3:47 PM

Tue, Nov 25

jrtc27 committed rGaac0ef54dce9: kern: Fix section name for embedded firmware blobs (authored by jrtc27).
kern: Fix section name for embedded firmware blobs
Tue, Nov 25, 4:31 AM

Mon, Nov 24

jrtc27 added a comment to D53898: sys: Declare 'end' as an extern char so that &end is a char *.

s/extern char/&[]/ in the subject, also &end is not char * in that case, it's char (*)[], which is an incomplete type so you can't perform pointer arithmetic on it (as sizeof(char[]) is not known). char itself decays to a char * and so pointer arithmetic on *that* works.

Mon, Nov 24, 4:02 PM

Sat, Nov 22

jrtc27 added a reverting change for rGa695ac2ce8bc: arm64: Move intr_pic_init_secondary earlier: rG9128380511de: Revert "arm64: Move intr_pic_init_secondary earlier".
Sat, Nov 22, 6:48 PM
jrtc27 committed rG9128380511de: Revert "arm64: Move intr_pic_init_secondary earlier" (authored by jrtc27).
Revert "arm64: Move intr_pic_init_secondary earlier"
Sat, Nov 22, 6:47 PM
jrtc27 added a reverting change for D53685: arm64: Move intr_pic_init_secondary earlier: rG9128380511de: Revert "arm64: Move intr_pic_init_secondary earlier".
Sat, Nov 22, 6:47 PM
jrtc27 added a member for arm64: jrtc27.
Sat, Nov 22, 5:11 PM

Fri, Nov 21

jrtc27 added a comment to D53817: new type: ptraddr_t.

D53818 actually does redefine vm_offset_t to ptraddr_t which isn't quite right, but will be once I extract the vm_pointer_t patches.

There's a bigger long term question if vm_foo_t should exist at all. I don't have a strong opinion there.

Me neither, but it's a lot of churn to remove at least vm_offset_t. vm_paddr_t and vm_pindex_t have no obvious substitute. vm_ooffset_t would have to be uint64ptr_t I think.

Fri, Nov 21, 2:54 PM

Thu, Nov 20

jrtc27 added inline comments to D53756: setcred: Move initial copyin of struct setcred out to per-ABI syscall.
Thu, Nov 20, 4:01 PM
jrtc27 added inline comments to D53823: add types: (u)int64ptr_t.
Thu, Nov 20, 12:27 PM
jrtc27 added a comment to D53819: sys/_types.h: define __(u)int(f)ptr_t for CHERI.
In D53819#1229955, @kib wrote:

And where is __intcap_t defined? Is it provided by some MD include, like machine/_types.h?

I do not remember seeing this MD define in the review series. If true, then should __intcap_t added before the use?

__intcap_t is a new primitive type provided by the compiler. It cannot be defined by a header except on systems that don't support it.

Thu, Nov 20, 10:09 AM

Tue, Nov 18

jrtc27 added inline comments to D53756: setcred: Move initial copyin of struct setcred out to per-ABI syscall.
Tue, Nov 18, 6:12 PM

Mon, Nov 17

jrtc27 added a comment to D52526: cross-build: fix bootstrap with clang 19 on glibc systems.

I forgot about this revision and ended up reinventing it in 4dd2b869cd078ed6f40c42d1ef429222da16a58f and 34e7a57673c9730ee5d1f7ebb07e152567bd8e0b so it should be fixed in-tree. I did however retain the knowledge about Clang's bugginess wrt __gnu_linux__ (and wondered where I'd got that from...) so did not use it myself... I did also check musl matched us rather than glibc.

Thanks for committing this. Do we still need the && defined(__USE_GNU)? Technically it's needed but I guess this file is only every compiled with -D_GNU_SOURCE so probably doesn't matter?

Mon, Nov 17, 5:26 PM
jrtc27 added inline comments to D52528: libthr: fix -Wunterminated-string-initialization.
Mon, Nov 17, 4:33 PM
jrtc27 added a comment to D52526: cross-build: fix bootstrap with clang 19 on glibc systems.

I forgot about this revision and ended up reinventing it in 4dd2b869cd078ed6f40c42d1ef429222da16a58f and 34e7a57673c9730ee5d1f7ebb07e152567bd8e0b so it should be fixed in-tree. I did however retain the knowledge about Clang's bugginess wrt __gnu_linux__ (and wondered where I'd got that from...) so did not use it myself... I did also check musl matched us rather than glibc.

Mon, Nov 17, 4:31 PM

Sat, Nov 15

jrtc27 added a comment to D53770: bsdinstall: Mount /dev and /packages after using the shell to partition disks.

New scripts need to be added to OptionalObsoleteFiles

Sat, Nov 15, 1:47 PM

Fri, Nov 14

jrtc27 added inline comments to D53755: MAC: Use the current thread's user ABI to determine the layout of struct mac.
Fri, Nov 14, 3:46 PM

Wed, Nov 12

jrtc27 accepted D53702: vga_pci: Permit child devices to allocate non-standard BARs.
Wed, Nov 12, 5:51 PM
jrtc27 added inline comments to D53697: netlink: Fix overallocation of netlink message buffers.
Wed, Nov 12, 5:48 PM

Tue, Nov 11

jrtc27 accepted D53693: depend-cleanup.sh: Remove everything before the last build epoch..
Tue, Nov 11, 6:59 PM

Mon, Nov 10

jrtc27 added inline comments to D53673: lib/libc: implement C23 memalignment().
Mon, Nov 10, 6:35 PM

Nov 4 2025

jrtc27 added a comment to D53569: release: Make fetch happen in GCE images.

You were exactly a month late for October 3rd... :)

Nov 4 2025, 12:06 AM

Oct 29 2025

jrtc27 accepted D53441: riscv: Treat pointer register as an input in fpe_store.

Maybe a description along the lines of:

Oct 29 2025, 4:28 PM
jrtc27 added a comment to D45697: riscv: add FPE code.
  • Ensure all operands are output in fpe_store() and input in fpe_restore().
Oct 29 2025, 4:11 PM
jrtc27 added a comment to D53399: dtrace/arm64: properly traverse the symbol table.

You need to actually edit the description in Phabricator; arc diff won't do it for you if you just amend the commit locally.

Oct 29 2025, 12:17 AM

Oct 28 2025

jrtc27 accepted D53397: pmcstat: Remove no-op 'k' option.

Thanks, I'd forgotten about this, and would have guessed it was a change I'd made in 15 not 14 but no, that much time has indeed passed.

Oct 28 2025, 6:55 PM

Oct 23 2025

jrtc27 committed R11:2e1bb1c91297: devel/llvm-{cheri,morello}: Update distinfo for new snapshots (authored by jrtc27).
devel/llvm-{cheri,morello}: Update distinfo for new snapshots
Oct 23 2025, 3:45 PM
jrtc27 committed R11:970800c38d15: devel/llvm-morello: Add script to automate Makefile.snapshot generation (authored by jrtc27).
devel/llvm-morello: Add script to automate Makefile.snapshot generation
Oct 23 2025, 3:19 PM
jrtc27 committed R11:0f4057007926: devel/llvm-{cheri,morello}: new snapshots (authored by jrtc27).
devel/llvm-{cheri,morello}: new snapshots
Oct 23 2025, 3:18 PM

Oct 22 2025

jrtc27 committed rG34e7a57673c9: krb5: Include <features.h> on Linux so __GLIBC__ can be checked (authored by jrtc27).
krb5: Include <features.h> on Linux so __GLIBC__ can be checked
Oct 22 2025, 8:07 PM
jrtc27 committed rG4dd2b869cd07: krb5: Fix -Wint-conversion when bootstrapping on GNU/Linux (authored by jrtc27).
krb5: Fix -Wint-conversion when bootstrapping on GNU/Linux
Oct 22 2025, 7:52 PM
jrtc27 added a comment to D53232: riscv: explicit memory barrier primitives.

This will not fix that bug. fence is fence iorw, iorw, so all you are doing is relaxing some ordering requirements.

Oct 22 2025, 9:47 AM · riscv

Oct 21 2025

jrtc27 added a comment to D53250: sys/arm64: fix COMPAT_FREEBSD32 __syscall().

Fixes: 8c9c3144ccfa ("Impleent COMPAT_FREEBSD32 for arm64. This is based on early work by andrew@.")

Oct 21 2025, 10:34 PM
jrtc27 added a reviewer for D53232: riscv: explicit memory barrier primitives: jrtc27.
Oct 21 2025, 9:53 AM · riscv
jrtc27 added a comment to D53232: riscv: explicit memory barrier primitives.

Do we actually have a proper definition of what *our* memory barrier APIs are meant to mean? What the ISA manual says is a sensible mapping isn't necessarily what we want; note that the table you're referencing is for "Linux memory primitives", and we are not Linux, nor do we follow its memory model.

Oct 21 2025, 9:53 AM · riscv

Oct 17 2025

jrtc27 added inline comments to D53173: imgact: Mark brandinfo and note structures as const.
Oct 17 2025, 10:56 PM

Oct 15 2025

jrtc27 added a comment to D53119: uart: provide and use default rclk for JH7110 UART.

The logic for removing this in the FDT is that, on Linux, the clock framework comes up early enough (or at least some early part of it) in order to be able to query the UART clock's frequency from the clock driver, whereas we don't do anything like that with clocks prior to newbus passes, so way too late for cninit.

Yes. I can note this in the commit message.

What do you think of the patch?

Oct 15 2025, 3:51 PM
jrtc27 added a comment to D53119: uart: provide and use default rclk for JH7110 UART.

The logic for removing this in the FDT is that, on Linux, the clock framework comes up early enough (or at least some early part of it) in order to be able to query the UART clock's frequency from the clock driver, whereas we don't do anything like that with clocks prior to newbus passes, so way too late for cninit.

Oct 15 2025, 3:24 PM

Oct 13 2025

jrtc27 accepted D53075: Ping: Make build reproducible.
Oct 13 2025, 9:40 PM

Oct 7 2025

jrtc27 added inline comments to D52822: arch.7: Add CHERI architectures.
Oct 7 2025, 1:26 PM
jrtc27 added inline comments to D52822: arch.7: Add CHERI architectures.
Oct 7 2025, 1:25 PM

Oct 6 2025

jrtc27 added inline comments to D52820: arch.7: deprecate __ILP32__ and __LP64__ macros.
Oct 6 2025, 3:17 PM

Sep 20 2025

jrtc27 accepted D52626: powerpc: implement atomic_set/clear_16.
Sep 20 2025, 7:18 PM
jrtc27 added inline comments to D52626: powerpc: implement atomic_set/clear_16.
Sep 20 2025, 7:18 PM
jrtc27 added inline comments to D52626: powerpc: implement atomic_set/clear_16.
Sep 20 2025, 7:06 PM
jrtc27 added inline comments to D52626: powerpc: implement atomic_set/clear_16.
Sep 20 2025, 6:54 PM

Sep 19 2025

jrtc27 added inline comments to D52626: powerpc: implement atomic_set/clear_16.
Sep 19 2025, 6:13 PM

Sep 18 2025

jrtc27 added inline comments to D51471: release: Add 2 image layers for almost all base.txz packages excluding toolchain, and one with toolchain.
Sep 18 2025, 12:13 AM

Sep 16 2025

jrtc27 added inline comments to D52558: bsdinstall: Use package sets for pkgbase install.
Sep 16 2025, 8:15 PM
jrtc27 added a comment to D52558: bsdinstall: Use package sets for pkgbase install.

Is the expectation that we ensure all release media have all supported package sets present in an offline package repo? Because disc1/memstick won't have the real src package, for example, and bootonly/mini-memstick won't have any real packages at all. So I think for this to work even bootonly/mini-memstick needs to have a package repo of the package sets (as a pkgbase analogue to how it still has the MANIFEST file that lists all distribution sets, just the sets themselves aren't present)?

Sep 16 2025, 8:13 PM

Sep 15 2025

jrtc27 added inline comments to D52526: cross-build: fix bootstrap with clang 19 on glibc systems.
Sep 15 2025, 11:26 PM
jrtc27 added inline comments to D52543: if_ovpn.c: fix use of uninitialized variable.
Sep 15 2025, 10:16 PM
jrtc27 added a comment to D52562: packages: Mark all sets as vital.

I think they should all be vital, in the sense that if you've installed that metapackage then you don't want your system to ever remove it without very explicit confirmation, no?

Sep 15 2025, 10:07 PM
jrtc27 added a comment to D52558: bsdinstall: Use package sets for pkgbase install.

Please make base the default. bsdinstall defaults should be such that you can mash enter without thinking and get a sensible system. I suspect minimal is not what most want.

Sep 15 2025, 8:15 PM
jrtc27 added a comment to D52544: release: Allow powerpc GENERIC64(le)? kernels.

Is there a reason to limit this at all? If we’re restricting the set of kernels built already then should we not just pick up any and all kernel packages that release/Makefile got Makefile.inc1 to package?

Sep 15 2025, 5:17 PM
jrtc27 updated subscribers of D52540: bsdinstall: Call dist sets "legacy".

I'm a bit uneasy about (a) removing the (Experimental) from pkgbase (b) adding the (Legacy) to Dist Sets when pkgbase is currently not fit for release whilst distribution sets are tried and tested. So this feels more aspirational than truthful, but I also understand the objective of the release is to do pkgbase... I just think we need to be very careful not to push pkgbase on our users too hard until we are truly willing to support it in the form they will be installing. I think doing so before we have metapackages integrated into bsdinstall, in particular, is premature.

Sep 15 2025, 4:06 AM

Sep 10 2025

jrtc27 added a comment to D52210: OptionalObsoleteFiles.inc: Treat compat runtime loaders as libraries.

I guess my view is that OLD_LIBS is really there so that soname bumps don't break existing binaries; you need the new library to be able to build the new binary, but don't want a window between installing the new library and being able to build the new binary where it doesn't work. That isn't really important for this case, because you can just not set WITHOUT_LIBFOO until you've updated all your binaries to not use that ABI. But at the same time, if we're using OLD_LIBS for all the libraries here, then yes, that's pointless if you're using OLD_FILES for rtld itself.

Sep 10 2025, 4:54 PM
jrtc27 added a comment to D52210: OptionalObsoleteFiles.inc: Treat compat runtime loaders as libraries.

Does delete-old-libs even delete all of a given libcompat if you set WITHOUT_LIBFOO? Oh that's what this code is trying to do.

Sep 10 2025, 4:43 PM

Sep 9 2025

jrtc27 committed rG26d56dec1e0e: certctl: Use __DECONST rather than reimplementing (authored by jrtc27).
certctl: Use __DECONST rather than reimplementing
Sep 9 2025, 1:31 PM
jrtc27 added a comment to D52382: tools/build: Provide modern sysctl.h for bootstrap tools.

Just because sys/sysctl.h is self-contained doesn't mean certctl.c shouldn't also be including sys/types.h. Presumably it itself is using types from that header and so should explicitly include it, regardless of whether sys/sysctl.h is including it for its own needs (which is an implementation detail; what means it uses to give things it defines the right types is up to it). And given style(9) header ordering rules that would mean including sys/types.h first, which would render this obsolete.

Sep 9 2025, 1:23 PM

Sep 7 2025

jrtc27 added inline comments to D52412: packages: Add meta-package sets.
Sep 7 2025, 6:41 PM
jrtc27 added inline comments to D52412: packages: Add meta-package sets.
Sep 7 2025, 6:34 PM

Sep 6 2025

jrtc27 added a comment to D52303: build/newvers: Use language-agnostic (ISO 8601) timestamp format during build and newvers.

It does appear both macOS and GNU date support -Iseconds. However, my concern with this change is that such timestamps are rather uglier and less human-readable, which is less of a problem for build system messages but more so for uname. I note that Linux uses LC_ALL=C date output for its uname, running uname -a on an Ubuntu system.

Sep 6 2025, 7:12 PM

Sep 4 2025

jrtc27 added a comment to D52387: release: Add variables for makefs and mkimg arguments.

Are we sure all these scripts aren't set -u? Even if that's true, I don't love relying on that.

Yes, they are definitely not set -u-clean. I don't quite follow though: how does this patch rely on that? : ${FOO:=bar} is ok even with set -u configured.

Sep 4 2025, 8:46 PM
jrtc27 added a comment to D52387: release: Add variables for makefs and mkimg arguments.

Are we sure all these scripts aren't set -u? Even if that's true, I don't love relying on that.

Sep 4 2025, 6:21 PM
jrtc27 added a comment to D52388: release: Set default timestamps for makefs and mkimg outputs.

Should this not be tied to SOURCE_DATE_EPOCH rather than some arbitrary and misleading timestamp (1st Jan 2024, which predates any release that will include this code)?

Sep 4 2025, 6:20 PM
jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

And to be clear, as far as I can tell, absolutely nothing has changed in Clang to make Clang 20 any less happy with this configuration than Clang 12; that is, I believe using Clang 12 with that configuration when this was committed would have been just as broken, and so adding any new version-specific behaviour is inappropriate (and so the subject and body of this review are misguided).

Sep 4 2025, 1:23 AM

Sep 3 2025

jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

Ok so yeah there is the assumption that you're not doing that. Probably the correct fix is to drop the :S/^ld.//1W. But the other point to make is that your script is unnecessary, just pass --cross-toolchain=llvm@20 and it'll set all the X* variables for you to values that are known to work (because that's what CI is using), and you don't need to mess with PATH to make that work. You also do not need to set CC explicitly unless you really want to override the defaults, which I doubt.

Sep 3 2025, 8:09 PM
jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

And what happens if you ls /opt/homebrew/opt/lld@20/bin?

$ ls -l /opt/homebrew/opt/lld@20/bin
total 128
lrwxrwxr-x 1 wosch admin 3 Jul 9 01:06 ld.lld -> lld
lrwxrwxr-x 1 wosch admin 3 Jul 9 01:06 ld64.lld -> lld
-r-xr-xr-x 1 wosch admin 62160 Sep 1 20:33 lld
lrwxrwxr-x 1 wosch admin 3 Jul 9 01:06 lld-link -> lld
lrwxrwxr-x 1 wosch admin 3 Jul 9 01:06 wasm-ld -> lld

$ /opt/homebrew/opt/lld@20/bin/ld.lld --version
Homebrew LLD 20.1.8 (compatible with GNU linkers)

calling “ldd” directly gives an error

$ /opt/homebrew/opt/lld@20/bin/lld --version
lld is a generic driver.
Invoke ld.lld (Unix), ld64.lld (macOS), lld-link (Windows), wasm-ld (WebAssembly) instead
echo $?
1

Sep 3 2025, 5:27 AM

Sep 2 2025

jrtc27 added inline comments to D52340: share/mk: Fix a heuristic in bsd.cpu.mk.
Sep 2 2025, 4:15 PM
jrtc27 added inline comments to D52340: share/mk: Fix a heuristic in bsd.cpu.mk.
Sep 2 2025, 3:51 PM
jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

And what happens if you ls /opt/homebrew/opt/lld@20/bin?

Sep 2 2025, 3:42 PM
jrtc27 added a comment to D52336: bridge: Set member_ifaddrs=1 by default.

Please commit this to main, it’s not appropriate to leave that broken

Sep 2 2025, 2:25 PM
jrtc27 requested changes to D52330: clang 19/20 needs the real linker name.
Sep 2 2025, 5:38 AM
jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

(By "this is odd" I mean "this change is definitely not right and will break other things even if it happens to end up producing a working build for you", so it's important to understand what exactly the problem you're seeing is rather than just deleting bits of code until your specific system is happy)

Sep 2 2025, 5:38 AM
jrtc27 added a comment to D52330: clang 19/20 needs the real linker name.

This looks odd. How were you trying to build? Have you seen https://github.com/freebsd/freebsd-src/commit/81fc74fd26da2f75c3010595db7a706c3e28d95b and its parent?

Sep 2 2025, 5:35 AM

Aug 29 2025

jrtc27 requested changes to D52250: bsdinstall: Attempt setting the date with NTP.

This does too many things in one change. Inferring whether it's pre- or post-install via looking at BSDINSTALL_CHROOT adds unnecessary complexity when the caller of the script already knows if it's pre-install or post-install. D52196 maintains that intentionality, and also better handles the time zone used during the install with a working /etc/localtime rather than needing to mess about with TZ. There may be ways you think the implementation there could be better, but I believe that the general design of it is better.

Aug 29 2025, 10:16 PM
jrtc27 added inline comments to D51915: bsdinstall: better support custom pkgbase repo config.
Aug 29 2025, 9:56 PM

Aug 28 2025

jrtc27 added inline comments to D51915: bsdinstall: better support custom pkgbase repo config.
Aug 28 2025, 4:21 PM

Aug 27 2025

jrtc27 added inline comments to D52196: bsdinstall, release: Set time and time zone earlier and use for live system.
Aug 27 2025, 9:40 PM
jrtc27 committed rG840edcd2921e: sysbuild: Copy /etc/localtime as symlink (authored by jrtc27).
sysbuild: Copy /etc/localtime as symlink
Aug 27 2025, 9:36 PM
jrtc27 committed rGccbd3de0f377: bsdinstall: Copy /etc/localtime as symlink in jail script (authored by jrtc27).
bsdinstall: Copy /etc/localtime as symlink in jail script
Aug 27 2025, 9:36 PM
jrtc27 requested review of D52196: bsdinstall, release: Set time and time zone earlier and use for live system.
Aug 27 2025, 9:22 PM

Aug 23 2025

jrtc27 added inline comments to D52058: bsdinstall: Set the date and time earlier.
Aug 23 2025, 5:41 PM
jrtc27 added inline comments to D52058: bsdinstall: Set the date and time earlier.
Aug 23 2025, 3:30 PM

Aug 22 2025

jrtc27 added inline comments to D52058: bsdinstall: Set the date and time earlier.
Aug 22 2025, 9:43 PM
jrtc27 added inline comments to D52057: bsdinstall: Attempt setting the date with NTP.
Aug 22 2025, 8:54 PM
jrtc27 committed rGad13dc1ece2f: bsd.compat.mk: Honour XSTRIPBIN for lib32 (authored by jrtc27).
bsd.compat.mk: Honour XSTRIPBIN for lib32
Aug 22 2025, 8:49 PM
jrtc27 committed rGe84374d38bc1: Makefile.libcompat: Use same PATH for _lc_build-tools as _build-tools (authored by jrtc27).
Makefile.libcompat: Use same PATH for _lc_build-tools as _build-tools
Aug 22 2025, 8:49 PM
jrtc27 added inline comments to D52058: bsdinstall: Set the date and time earlier.
Aug 22 2025, 6:54 PM
jrtc27 added inline comments to D52058: bsdinstall: Set the date and time earlier.
Aug 22 2025, 6:50 PM