diff options
| author | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-08-13 11:14:24 +0000 |
|---|---|---|
| committer | Ahmad Khalifa <vexeduxr@FreeBSD.org> | 2025-08-13 11:14:24 +0000 |
| commit | f13e8ea08310fe8a0d8bc7817ae428939f8e5144 (patch) | |
| tree | 25e8f68756cf038420485ded4a253c9f12587db2 | |
| parent | c063fb7accae4cbe5e0fb808a1382600dc1b4249 (diff) | |
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
| -rw-r--r-- | UPDATING | 6 | ||||
| -rw-r--r-- | sys/sys/param.h | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -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, |
