#
e9ac4169 |
| 15-Jul-2024 |
Warner Losh <imp@FreeBSD.org> |
Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.
MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
|
Revision tags: release/14.1.0, release/13.3.0, release/14.0.0 |
|
#
d0b2dbfa |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0, release/11.0.1, release/11.0.0, release/10.3.0, release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0 |
|
#
1a0fda2b |
| 04-Mar-2010 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
IFH@204581
|
#
b207c9d8 |
| 09-Feb-2010 |
Warner Losh <imp@FreeBSD.org> |
Anything that casts struct sockaddr * to struct sockaddr_foo is safe due to careful design. We've not yet figured out how to properly annotate the sockaddr structs to communicate this to the compile
Anything that casts struct sockaddr * to struct sockaddr_foo is safe due to careful design. We've not yet figured out how to properly annotate the sockaddr structs to communicate this to the compiler and there's a number of constructs in the tree that make this annotation challenging.
As such, reduce warns to 3 here because this code really isn't warns 6 safe, even if it kinda sorta appears to be on intel (which has no such alignment restrictions). Warns 4 adds the -Wcast-align warning.
# fixes the mips tinderbox build
show more ...
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
71ccf092 |
| 02-Jan-2010 |
Ed Schouten <ed@FreeBSD.org> |
The last big commit: let usr.sbin/ use WARNS=6 by default.
|
Revision tags: release/8.0.0_cvs, release/8.0.0 |
|
#
10b3b545 |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head
|
#
09c817ba |
| 03-Jul-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
- MFC
|
#
d981a4e2 |
| 01-Jul-2009 |
Stanislav Sedov <stas@FreeBSD.org> |
- Fix the bug in write(2) called with incorrect parameters resulting in writes always started from the start of the packet. - Fix usage string (multiple addresses can be specified). - Make the sour
- Fix the bug in write(2) called with incorrect parameters resulting in writes always started from the start of the packet. - Fix usage string (multiple addresses can be specified). - Make the source more style(9) compliant. - Improve error reporting (do not silently fail if something goes wrong). - Make functions static. - Use warns level 6.
Approved by: re (kib) Discussed with: Marc Balmer <marc@msys.ch>, brian, mbr
show more ...
|
#
a6dff0a5 |
| 01-Jul-2009 |
Martin Blapp <mbr@FreeBSD.org> |
Compiles without higher warn level
M wake/Makefile
Approved by: re (previous commit)
|
#
58c6a70a |
| 30-Jun-2009 |
Martin Blapp <mbr@FreeBSD.org> |
Add wake, a tool to send Wake on LAN frames to hosts on a local Ethernet network
Submitted by: Marc Balmer <marc@msys.ch> Reviewed by: rwatson Approved by: re
M usr.sbin/Makefile A usr.s
Add wake, a tool to send Wake on LAN frames to hosts on a local Ethernet network
Submitted by: Marc Balmer <marc@msys.ch> Reviewed by: rwatson Approved by: re
M usr.sbin/Makefile A usr.sbin/wake AM usr.sbin/wake/wake.c AM usr.sbin/wake/Makefile AM usr.sbin/wake/wake.8
show more ...
|
#
b207c9d8 |
| 09-Feb-2010 |
Warner Losh <imp@FreeBSD.org> |
Anything that casts struct sockaddr * to struct sockaddr_foo is safe due to careful design. We've not yet figured out how to properly annotate the sockaddr structs to communicate this to the compile
Anything that casts struct sockaddr * to struct sockaddr_foo is safe due to careful design. We've not yet figured out how to properly annotate the sockaddr structs to communicate this to the compiler and there's a number of constructs in the tree that make this annotation challenging.
As such, reduce warns to 3 here because this code really isn't warns 6 safe, even if it kinda sorta appears to be on intel (which has no such alignment restrictions). Warns 4 adds the -Wcast-align warning.
# fixes the mips tinderbox build
show more ...
|
#
9199c09a |
| 06-Jan-2010 |
Warner Losh <imp@FreeBSD.org> |
Merge from head at r201628.
# This hasn't been tested, and there are at least three bad commits # that need to be backed out before the branch will be stable again.
|
#
71ccf092 |
| 02-Jan-2010 |
Ed Schouten <ed@FreeBSD.org> |
The last big commit: let usr.sbin/ use WARNS=6 by default.
|
#
09c817ba |
| 03-Jul-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
- MFC
|
#
d981a4e2 |
| 01-Jul-2009 |
Stanislav Sedov <stas@FreeBSD.org> |
- Fix the bug in write(2) called with incorrect parameters resulting in writes always started from the start of the packet. - Fix usage string (multiple addresses can be specified). - Make the sour
- Fix the bug in write(2) called with incorrect parameters resulting in writes always started from the start of the packet. - Fix usage string (multiple addresses can be specified). - Make the source more style(9) compliant. - Improve error reporting (do not silently fail if something goes wrong). - Make functions static. - Use warns level 6.
Approved by: re (kib) Discussed with: Marc Balmer <marc@msys.ch>, brian, mbr
show more ...
|
#
a6dff0a5 |
| 01-Jul-2009 |
Martin Blapp <mbr@FreeBSD.org> |
Compiles without higher warn level
M wake/Makefile
Approved by: re (previous commit)
|
#
58c6a70a |
| 30-Jun-2009 |
Martin Blapp <mbr@FreeBSD.org> |
Add wake, a tool to send Wake on LAN frames to hosts on a local Ethernet network
Submitted by: Marc Balmer <marc@msys.ch> Reviewed by: rwatson Approved by: re
M usr.sbin/Makefile A usr.s
Add wake, a tool to send Wake on LAN frames to hosts on a local Ethernet network
Submitted by: Marc Balmer <marc@msys.ch> Reviewed by: rwatson Approved by: re
M usr.sbin/Makefile A usr.sbin/wake AM usr.sbin/wake/wake.c AM usr.sbin/wake/Makefile AM usr.sbin/wake/wake.8
show more ...
|