The branch main has been updated by rlibby: URL: https://cgit.FreeBSD.org/src/commit/?id=0f6c880fcecdbb9cc84ed03ee85a518dd3c66f12
commit 0f6c880fcecdbb9cc84ed03ee85a518dd3c66f12 Author: Ryan Libby <[email protected]> AuthorDate: 2026-05-10 04:25:43 +0000 Commit: Ryan Libby <[email protected]> CommitDate: 2026-05-10 04:25:43 +0000 stand/i386: quiet executable stack warning Reviewed by: imp, kib Differential Revision: https://reviews.freebsd.org/D56908 --- stand/i386/boot2/sio.S | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stand/i386/boot2/sio.S b/stand/i386/boot2/sio.S index de554efb5b3e..5c4650dc0533 100644 --- a/stand/i386/boot2/sio.S +++ b/stand/i386/boot2/sio.S @@ -80,3 +80,5 @@ sio_ischar: movw $SIO_PRT+0x5,%dx # Line status register inb (%dx),%al # Received data andb $0x1,%al # ready? ret # To caller + + .section .note.GNU-stack,"",%progbits
