created | 2022-05-29T00:16:03Z |
---|---|
begin | 2022-05-24T00:00:00Z |
end | 2022-05-25T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2022-05-24T17:15:22Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/arch/arm/include/asm.h | log | diff | annotate |
message |
Address the clang 13 "changed binding to STB_WEAK" warning on arm (32bit): * add _?ENTRY_NB to arm/asm.h * make sure ld.so's arm asm bits see the same includes as libc * switch libc's arm bits to the generic DEFS.h * switch arm ASM bits from ENTRY to ENTRY_NB as necessary ok kettenis@ miod@ |
date | 2022-05-24T17:29:02Z | |||
---|---|---|---|---|
author | krw | |||
files | src/sys/arch/amd64/stand/mbr/mbr.S | log | diff | annotate |
src/sys/arch/i386/stand/mbr/mbr.S | log | diff | annotate | |
src/sys/arch/landisk/stand/mbr/mbr.S | log | diff | annotate | |
message |
fdisk(8) no longer uses the partition table it finds in /usr/mdec/mbr. Make the partition table all zeros and see if any hidden uses fall out. ok deraadt@ |
date | 2022-05-24T22:34:02Z | |||
---|---|---|---|---|
author | guenther | |||
files | src/sys/arch/arm64/include/asm.h | log | diff | annotate |
message |
Address the clang 13 "changed binding to STB_WEAK" warning on arm64: add _?ENTRY_NB to asm.h, switch libc's asm bits to the generic DEFS.h, and use ENTRY_NB as necessary. Also, give sizes to the htonl/htons symbols and mark them as weak. ok kettenis@ miod@ |