The branch main has been updated by vexeduxr: URL: https://cgit.FreeBSD.org/src/commit/?id=f13e8ea08310fe8a0d8bc7817ae428939f8e5144
commit f13e8ea08310fe8a0d8bc7817ae428939f8e5144 Author: Ahmad Khalifa <vexed...@freebsd.org> AuthorDate: 2025-08-13 11:14:24 +0000 Commit: Ahmad Khalifa <vexed...@freebsd.org> CommitDate: 2025-08-13 11:14:24 +0000 bump FreeBSD_version to 1500060 for gpiobus changes Bump FreeBSD_version and add UPDATING entry for gpiobus changes. Reviewed by: imp Approved by: imp (mentor) Differential Revision: https://reviews.freebsd.org/D51579 --- UPDATING | 6 ++++++ sys/sys/param.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/UPDATING b/UPDATING index 78562d021e37..c4452354b189 100644 --- a/UPDATING +++ b/UPDATING @@ -27,6 +27,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 15.x IS SLOW: world, or to merely disable the most expensive debugging functionality at runtime, run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20250813: + The gpiobus_attach_bus() function has been removed. Drivers should now + use the gpiobus_add_bus() function instead. The difference being that + gpiobus_add_bus() doesn't call bus_attach_children(), calling it will + be the responsibility of the caller now. + 20250810: Support for Secure RPC DES authentication has been removed. The keyserv(8) daemon was already removed, but support for it in libc diff --git a/sys/sys/param.h b/sys/sys/param.h index b9942c7bc2fd..c410a6ee666f 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -74,7 +74,7 @@ * cannot include sys/param.h and should only be updated here. */ #undef __FreeBSD_version -#define __FreeBSD_version 1500059 +#define __FreeBSD_version 1500060 /* * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,