created | 2023-03-08T14:31:44Z |
---|---|
begin | 2023-03-04T00:00:00Z |
end | 2023-03-05T00:00:00Z |
path | src/sys |
commits | 12 |
date | 2023-03-04T01:23:40Z | |||
---|---|---|---|---|
author | dlg | |||
files | src/sys/dev/acpi/tipmic.c | log | diff | annotate |
message |
handle polling when cold in tipmic_thermal_opreg_handler(). this allows me to boot if acpitz is using tipmic instead of getting stuck. tipmic would spin on tsleep, which returns immediately with 0 when cold, waiting for a value to be set by the tipmic interrupt handler. cos the box is cold the interrupt is masked, so the tsleep loop never ended. patrick@ helped me find this ok kettenis@ |
date | 2023-03-04T09:03:34Z | |||
---|---|---|---|---|
author | kn | |||
files | src/sys/netinet/if_ether.c | log | diff | annotate |
message |
properly initialise LIST head This worked because the global head variable is zero-initialised, but one must not rely on that. OK mvs claudio |
date | 2023-03-04T10:42:26Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/arch/armv7/marvell/files.marvell | log | diff | annotate |
message | Add mvortc(4) and mvodog(4) here too |
date | 2023-03-04T10:55:37Z | |||
---|---|---|---|---|
author | sashan | |||
files | src/sys/net/pf.c | log | diff | annotate |
message |
pf(4) should be enforcing TTL=1 to packets sent to 224.0.0.1 only. Issue found and kindly reported by Luca Di Gregorio <lucdig _at_ gmail> OK bluhm@ |
date | 2023-03-04T14:49:37Z | |||
---|---|---|---|---|
author | deraadt | |||
files | src/sys/arch/macppc/stand/tbxidata/bsd.tbxi | log | diff | annotate |
src/sys/conf/newvers.sh | log | diff | annotate | |
src/sys/sys/param.h | log | diff | annotate | |
message | move to 7.3-beta |
date | 2023-03-04T22:34:37Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/mii/bmtphy.c | log | diff | annotate |
message |
Use ISC licence. ok deraadt@ |
date | 2023-03-04T22:35:28Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/mii/ytphy.c | log | diff | annotate |
message |
Add ytphy(4), a driver for the MotorComm YT8511 PHY. ok deraadt@ |
date | 2023-03-04T22:36:15Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/conf/GENERIC | log | diff | annotate |
message | enable ytphy(4) |
date | 2023-03-04T22:40:37Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/mii/files.mii | log | diff | annotate |
src/sys/dev/mii/ytphy.c | log | diff | annotate | |
message |
Add ytphy(4) to files.mii (forgotten in the previous commit). Fix year on my copyright. |
date | 2023-03-04T22:48:00Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/arch/arm64/conf/RAMDISK | log | diff | annotate |
message | Enable ytphy(4) here too. |
date | 2023-03-04T22:51:12Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/rkpinctrl.c | log | diff | annotate |
message |
On RK356x many devices need to be explicitly routed to use alternative pin muxings. Implement support for this. ok patrick@ |
date | 2023-03-04T22:54:35Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/fdt/rkgpio.c | log | diff | annotate |
message |
Turns out the RK3566 has a different value in the GPIO_VER_ID register than advertised in the RK3568. This value is present in the Linux driver and implies the new register layout. So handle both values. This makes GPIOs on the RK3566 actually work. ok patrick@ |