GhostBSD/ghostbsd 7a2307fstand/defaults loader.conf.5 loader.conf, stand/lua menu.lua core.lua

loader: add hidden boot menu option and fix verbose/mute interaction

Add loader_menu_hidden="YES" support to hide the boot menu during the
autoboot countdown. Instead of drawing the full menu immediately, a
minimal "Press any key for boot menu..." prompt is shown. Pressing any
key reveals the menu; otherwise the system boots when the countdown
expires. The countdown duration is controlled by autoboot_delay.

Also force boot_mute=NO when verbose boot is enabled from the menu, so
that verbose output is not silenced by the default boot_mute="YES".
Disabling verbose leaves boot_mute untouched per loader.conf.
DeltaFile
+51-8stand/lua/menu.lua
+11-0stand/defaults/loader.conf.5
+2-1stand/defaults/loader.conf
+1-0stand/lua/core.lua
+65-94 files

LLVM/project b0af9b0llvm/test/Transforms/LowerTypeTests x86-jumptable-dbg.ll aarch64-jumptable-dbg.ll

[𝘀𝗽𝗿] initial version

Created using spr 1.3.7
DeltaFile
+104-0llvm/test/Transforms/LowerTypeTests/x86-jumptable-dbg.ll
+72-0llvm/test/Transforms/LowerTypeTests/aarch64-jumptable-dbg.ll
+176-02 files

LLVM/project e7f5822llvm/test/Transforms/LowerTypeTests x86-jumptable-dbg.ll aarch64-jumptable-dbg.ll

[NFC][LowerTypeTests] Add AArch64 and X86 jump table tests with debug info (#192735)

It just recommits test copied from non dbg version.

Implementation is https://github.com/llvm/llvm-project/pull/192736.
DeltaFile
+104-0llvm/test/Transforms/LowerTypeTests/x86-jumptable-dbg.ll
+72-0llvm/test/Transforms/LowerTypeTests/aarch64-jumptable-dbg.ll
+176-02 files

GhostBSD/ghostbsd 709a75econtrib/libcbor/doc/source requirements.txt

Merge remote-tracking branch 'origin/stable/15' into stable/15
DeltaFile
+2-2contrib/libcbor/doc/source/requirements.txt
+2-21 files

FreeBSD/ports fb347f7security/strongswan Makefile

security/strongswan: Enable ML plugin by default to allow Post-Quantum Key Exchange Methods

Currently ML-DSA (used for Digital Signatures) is a draft in strongswan
(ETA Version 6.1.0 or later). So CNSA 2.0 cannot be fully supported yet.
https://linux-ipsec.org/slides/2025/steffen-pqc-auth-for-ikev2.pdf
But most firewalls (Palo Alto / Fortigate) already support ML-KEM Key
Exchange in addition to standard proposals.
E.g. aes128gcm16-ecp256-ke1_mlkem512.

More details:
https://docs.strongswan.org/docs/latest/config/proposals.html

PR:             294305
Approved by:    strongswan at Nanoteq.com (maintainer, timeout 2 weeks)
Sponsored by:   UNIS Labs
DeltaFile
+2-1security/strongswan/Makefile
+2-11 files

LLVM/project d87ac87offload/plugins-nextgen/common/include PluginInterface.h, offload/plugins-nextgen/common/src PluginInterface.cpp

[offload] Fix synchronization when record replay is enabled (#193291)

When kernel record replay was enabled, the operations on the current
stream were not synchronized. That's because the current stream was
"ignored", and a new stream was used when RR is active. This is invalid
when there are pending operations on the original stream and can lead to
invalid prologue recording data.

This commit addresses this issue by using the original stream and
synchronizing it explicitly before and after kernel launch. This way, we
ensure the operations are completed before performing the prologue and
epilogue data recording. Additionally, the kernel record replay entry
points are moved to the same layer, in `GenericKernelTy::launch()`.
DeltaFile
+33-20offload/plugins-nextgen/common/src/PluginInterface.cpp
+9-2offload/plugins-nextgen/common/include/PluginInterface.h
+42-222 files

LLVM/project 404609druntimes/cmake config-Fortran.cmake

[runtimes] Enable Fortran only with explicit CMAKE_Fortran_COMPILER (#193332)

Only enable Fortran support when the user (or the bootstrapping build)
passes `-DCMAKE_Fortran_COMPILER=...`.

`enable_language(...)` other than C/CXX reveals problems with the
current build system. LLVM likes to add
`-Wl,--color-diagnostics`
to `CMAKE_EXE_LINKER_FLAGS` whenever possible. The problem is that
`CMAKE_EXE_LINKER_FLAGS` is added to the linker line regardless of which
language is used, but `HandleLLVMOptions.cmake` probes only
`CMAKE_CXX_COMPILER`. Other languages' compilers such as
`CMAKE_CUDA_COMPILER` (`nvcc`) or `CMAKE_Fortran_COMPILER` (`gfortran`)
may not accept the flag. CMake then fails when those compilers are "not
able to compile a simple test program." because it does not accept the
`--color-diagnostics` flag.

`CMAKE_EXE_LINKER_FLAGS` does not support generator expression such that
`$<$<COMPILE_LANGUAGE:C,CXX>:-Wl,--color-diagnostics>` does not work

    [6 lines not shown]
DeltaFile
+23-12runtimes/cmake/config-Fortran.cmake
+23-121 files

LLVM/project 5892e34clang/include/clang/Parse Parser.h, clang/include/clang/Sema DeclSpec.h

[BoundsSafety][NFC] Move LateParsedAttribute outside Parser class; move LateParsedAttrList to DeclSpec.h (#192145)

Preparatory refactoring for llvm/llvm-project#179612, which introduces
late parsing of bounds-safety attributes as type attributes. The new
approach needs LateParsedAttribute accessible from DeclSpec.h (to store
late attr pointers in DeclaratorChunk, Declarator, and DeclSpec), which
cannot depend on Parser.h.

- Move LateParsedDeclaration and LateParsedAttribute to namespace level
in Parser.h
- Move LateParsedAttrList to DeclSpec.h with a forward declaration of
LateParsedAttribute

Other LateParsedDeclaration subclasses (LateParsedClass,
LateParsedPragma, LateParsedMemberInitializer, etc.) remain inside
Parser as they are only created and consumed within Parser and don't
need to cross the Parser/Sema boundary.
DeltaFile
+162-141clang/include/clang/Sema/DeclSpec.h
+44-63clang/include/clang/Parse/Parser.h
+7-7clang/lib/Parse/ParseCXXInlineMethods.cpp
+213-2113 files

LLVM/project b48d8a5libc/cmake/modules LLVMLibCTestRules.cmake, libc/utils/libctest format.py

Support loader arguments in GPU hermetic tests (#193341)

GPU tests require arguments passed to the loader (like llvm-gpu-loader)
to be placed before the test binary on the command line.

Updated LLVMLibCTestRules.cmake to generate a three-part .params file to
separate loader flags from test arguments and pass environment
overrides. Implicitly added LIBOMPTARGET_STACK_SIZE for NVPTX targets.

Modified format.py to parse this new format and position the loader
arguments correctly before the binary.
DeltaFile
+29-8libc/utils/libctest/format.py
+23-0libc/cmake/modules/LLVMLibCTestRules.cmake
+52-82 files

LLVM/project 54c1b30libcxx/utils/ci/images libcxx_next_runners.txt libcxx_runners.txt

[libcxx][Github] Bump container version (#193351)

Now that the rebuilt container images are available with an upgraded
Github runner, bump to the latest image.
DeltaFile
+1-1libcxx/utils/ci/images/libcxx_next_runners.txt
+1-1libcxx/utils/ci/images/libcxx_runners.txt
+2-22 files

LLVM/project fc0f321libc/cmake/modules LLVMLibCTestRules.cmake

[libc][NFC] Remove trailing whitespace from LLVMLibCTestRules.cmake (#193350)
DeltaFile
+7-7libc/cmake/modules/LLVMLibCTestRules.cmake
+7-71 files

LLVM/project 7014ce8utils/bazel/llvm-project-overlay/lldb/source/Plugins BUILD.bazel

[bazel][lldb] Fix missing dep in ScriptedProcess (#193348)

Added in #181501
DeltaFile
+1-0utils/bazel/llvm-project-overlay/lldb/source/Plugins/BUILD.bazel
+1-01 files

LLVM/project 2b63e5elibunwind/src UnwindRegistersRestore.S UnwindRegistersSave.S

[LFI][libunwind] Avoid writing to reserved registers on the `aarch64_lfi` target (#192739)

The registers `x25`, `x26`, `x27`, and `x28` are reserved for the
`aarch64_lfi` target and should not be written/used. See
`llvm/docs/LFI.rst` for more details. They contain fixed constants or
temporaries used as part of assembly-level rewrites of load/store
instructions. The rewriter will reject programs that attempt to write to
these registers. It is technically OK to save/read them (in
`UnwindRegistersSave.S`), but there is no point since there is no need
to restore them (and to maintain LFI's security invariant, they in fact
cannot be written).
DeltaFile
+6-0libunwind/src/UnwindRegistersRestore.S
+6-0libunwind/src/UnwindRegistersSave.S
+12-02 files

LLVM/project daade8e.ci compute_projects_test.py compute_projects.py

[CI] Fix cross-project-tests dependencies (#193323)

We error out in CMake otherwise if we do not enable `clang`. Avoid
adding other dependencies for now as they are optional and otherwise
cause us to build them when using cross-project-tests to test other
projects like lld.
DeltaFile
+13-0.ci/compute_projects_test.py
+1-0.ci/compute_projects.py
+14-02 files

LLVM/project d623ee8clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage UnsafeBufferUsageExtractor.cpp

[SSAF] Fix -Wunused-variable (#193344)

We currently take the return value of inserting into a map (the iterator
and insertion boolean) to assert on the value of the insertion boolean.
This is unused in non-asserts builds, so mark it [[maybe_unused]] given
we cannot inline due to the insertion having side effects.
DeltaFile
+3-2clang/lib/ScalableStaticAnalysisFramework/Analyses/UnsafeBufferUsage/UnsafeBufferUsageExtractor.cpp
+3-21 files

LLVM/project d7d2c0cutils/bazel/llvm-project-overlay/clang BUILD.bazel

[bazel][clang] Fix build for #191932 (#193337)

Straightforward build fix.
DeltaFile
+2-0utils/bazel/llvm-project-overlay/clang/BUILD.bazel
+2-01 files

NetBSD/xsrc Gyso2dxexternal/mit/libXpm/dist/doc README.MSW, external/mit/libXpm/dist/src create.c amigax.c

   merge libXpm 3.5.19.
VersionDeltaFile
1.8+9-267external/mit/libXpm/dist/src/create.c
1.2+0-0external/mit/libXpm/dist/doc/README.MSW
1.2+0-0external/mit/libXpm/dist/src/amigax.c
1.2+0-0external/mit/libXpm/dist/src/amigax.h
1.2+0-0external/mit/libXpm/dist/src/rgbtab.h
1.2+0-0external/mit/libXpm/dist/src/simx.c
+9-2672 files not shown
+9-2678 files

FreeBSD/src bbd20c0sys/compat/linuxkpi/common/include/linux slab.h, sys/compat/linuxkpi/common/src linux_slab.c

linuxkpi: Pass a `const void *` to `krealloc()`

This matches the API on Linux.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56451
DeltaFile
+3-3sys/compat/linuxkpi/common/src/linux_slab.c
+2-2sys/compat/linuxkpi/common/include/linux/slab.h
+5-52 files

FreeBSD/src 18c71d9sys/compat/linuxkpi/common/include/linux mod_devicetable.h

linuxkpi: Include <linux/uuid.h> from <linux/mod_devicetable.h>

The DRM generic code started to deppend on this indirect include of
<linux/uuid.h> in Linux 6.12.

Reviewed by:    bz, emaste
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56449
DeltaFile
+1-0sys/compat/linuxkpi/common/include/linux/mod_devicetable.h
+1-01 files

FreeBSD/src 2434fcfsys/compat/linuxkpi/common/src linux_slab.c

linuxkpi: Passing a size of zero to `krealloc()` frees the pointer

This matches the API on Linux.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56452
DeltaFile
+5-0sys/compat/linuxkpi/common/src/linux_slab.c
+5-01 files

FreeBSD/src a5ae030sys/compat/linuxkpi/common/include/linux fs.h

linuxkpi: Add `fop_flags` to `struct file_operations`

... along with the `FOP_*` flag constants.

Note that this `fop_flags` field is not used on FreeBSD. It is added to
make the DRM drivers compile out of the box.

The DRM generic code and drivers started this in Linux 6.12.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56450
DeltaFile
+11-0sys/compat/linuxkpi/common/include/linux/fs.h
+11-01 files

FreeBSD/src ae1f695sys/compat/linuxkpi/common/include/linux kdev_t.h

linuxkpi: Define `MINORBITS`

We can't really define a proper value for this constant because minor
and major are encoded in a complex way on FreeBSD which cannot be
represented with a simple shift.

The DRM generic code started to use it in Linux 6.12.

In this context, `MINORBITS` is used to define an upper limit passed to
`xa_alloc()`. Therefore it is not used to encode or decode minors. It is
used as an arbitrary value. Therefore, we define the constant to 20,
like on Linux.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56447
DeltaFile
+15-0sys/compat/linuxkpi/common/include/linux/kdev_t.h
+15-01 files

FreeBSD/src 4dab15esys/compat/linuxkpi/common/include/linux sort.h

linuxkpi: Define `sort_r()`

Like Linux `sort()` and FreeBSD `qsort()`, `sort_r()` is a wrapper
around FreeBSD `qsort_r()`.

The i915 DRM driver started to use it in Linux 6.12.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56437
DeltaFile
+5-0sys/compat/linuxkpi/common/include/linux/sort.h
+5-01 files

FreeBSD/src cefd0aesys/compat/linuxkpi/common/include/linux uuid.h, sys/compat/linuxkpi/common/src linux_compat.c

linuxkpi: Add several `guid_*()` functions

The DRM generic code and the amdgpu DRM driver started to use several of
these functions in Linux 6.12. Likewise for `UUID_SIZE`.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56448
DeltaFile
+27-0sys/compat/linuxkpi/common/include/linux/uuid.h
+3-0sys/compat/linuxkpi/common/src/linux_compat.c
+30-02 files

FreeBSD/src ad528a6sys/compat/linuxkpi/common/include/linux kernel.h wait.h

linuxkpi: Define diagnostic macros like `might_resched()` or `cant_sleep()`

They are no-ops on FreeBSD.

While here, move the already defined `might_sleep*()` macros from
<linux/wait.h> to <linux/kernel.h> where they belong.

The DRM generic code started to use `might_fault()` in Linux 6.12.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56434
DeltaFile
+33-0sys/compat/linuxkpi/common/include/linux/kernel.h
+0-7sys/compat/linuxkpi/common/include/linux/wait.h
+33-72 files

FreeBSD/src 2357de8sys/compat/linuxkpi/common/include/linux device.h

linuxkpi: Define `dev_err_probe*()`

They differ from other `dev_*()` logging functions by returning the
passed error code. The error code is also used to determine if the
message should be logged in the first place and at which log level.

The DRM generic code started to use it in Linux 6.12.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56435
DeltaFile
+24-0sys/compat/linuxkpi/common/include/linux/device.h
+24-01 files

FreeBSD/src 8f95998sys/compat/linuxkpi/common/include/linux gfp.h

linuxkpi: Define `__GFP_THISNODE`

It is used to force the NUMA node to allocate from. This flag is
unimplemented for now because we don't have an implementation of
`alloc_pages_node()` yet.

The DRM TTM code started to use this flag in Linux 6.12.

Reviewed by:    bz
Sponsored by:   The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D56436
DeltaFile
+2-1sys/compat/linuxkpi/common/include/linux/gfp.h
+2-11 files

NetBSD/xsrc nFKAY4Uexternal/mit/libXpm/dist aclocal.m4 configure, external/mit/libXpm/dist/m4 libtool.m4

   initial import of libXpm-3.5.19
VersionDeltaFile
1.1.1.12+3,249-3,018external/mit/libXpm/dist/aclocal.m4
1.1.1.12+3,382-2,103external/mit/libXpm/dist/configure
1.1.1.11+705-248external/mit/libXpm/dist/config.sub
1.1.1.12+414-333external/mit/libXpm/dist/ltmain.sh
1.1.1.7+279-188external/mit/libXpm/dist/m4/libtool.m4
1.1.1.12+280-3external/mit/libXpm/dist/ChangeLog
+8,309-5,89348 files not shown
+9,155-7,05854 files

LLVM/project 486cc51llvm/test/CodeGen/AMDGPU/NextUseAnalysis spill-vreg-many-lanes.mir acyclic-770bb.mir

Merge remote-tracking branch 'origin/users/ziqingluo/PR-172429193-2-split-4' into users/ziqingluo/PR-172429193-3

 Conflicts:
        clang/lib/ScalableStaticAnalysisFramework/Analyses/SSAFAnalysesCommon.cpp
DeltaFile
+275,101-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/spill-vreg-many-lanes.mir
+144,679-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/acyclic-770bb.mir
+57,682-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/double-nested-loops-complex-cfg.mir
+41,844-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills2.mir
+40,613-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills1.mir
+37,209-0llvm/test/CodeGen/AMDGPU/NextUseAnalysis/test_ers_multiple_spills3.mir
+597,128-03,172 files not shown
+976,406-61,0033,178 files

LLVM/project e07f4b2lldb/source/Plugins/SymbolFile/DWARF DWARFUnit.cpp, lldb/unittests/SymbolFile/DWARF DWARFUnitTest.cpp

[lldb/DWARF] Support 5-component Swift version in DW_AT_producer (#193305)
DeltaFile
+36-0lldb/unittests/SymbolFile/DWARF/DWARFUnitTest.cpp
+2-2lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
+38-22 files