Date: Tue, 16 Jun 2026 23:50:12 +0000 From: Craig Leres <leres@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 8c78774107a7 - stable/15 - core.lua: follow symlinks when looking for bootable kernels Message-ID: <6a31e134.1cf1c.244f6489@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by leres: URL: https://cgit.FreeBSD.org/src/commit/?id=8c78774107a7f0434791efd3f99397cb5562a70d commit 8c78774107a7f0434791efd3f99397cb5562a70d Author: Craig Leres <leres@FreeBSD.org> AuthorDate: 2026-03-09 21:47:10 +0000 Commit: Craig Leres <leres@FreeBSD.org> CommitDate: 2026-06-16 23:49:30 +0000 core.lua: follow symlinks when looking for bootable kernels PR: 293654 Reviewed by: kevans Approved by: kevans Differential Revision: https://reviews.freebsd.org/D55713 (cherry picked from commit e6d579be42550f366cc85188b15c6eb0cad27367) --- stand/lua/core.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/lua/core.lua b/stand/lua/core.lua index 687376cbc40f..89850b712b2a 100644 --- a/stand/lua/core.lua +++ b/stand/lua/core.lua @@ -255,7 +255,7 @@ function core.kernelList() end if ftype then - if ftype ~= lfs.DT_DIR then + if ftype ~= lfs.DT_DIR and ftype ~= (lfs.DT_LNK or 10) then goto continue end elseif lfs.attributes(fname, "mode") ~= "directory" thenhome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a31e134.1cf1c.244f6489>
