Revision tags: 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 |
|
#
8fa0b743 |
| 23-Jan-2012 |
Xin LI <delphij@FreeBSD.org> |
IFC @230489 (pending review).
|
#
80dbff4e |
| 04-Jan-2012 |
Sean Bruno <sbruno@FreeBSD.org> |
IFC to head to catch up the bhyve branch
Approved by: grehan@
|
Revision tags: release/9.0.0 |
|
#
e802a0b3 |
| 11-Dec-2011 |
Ed Schouten <ed@FreeBSD.org> |
Let reboot(8) use getprogname() to compare the program name.
While there, mark the global variable dohalt static, as reboot(8) only consists of a single C file.
|
Revision tags: 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
|
#
bf8959b0 |
| 13-Jan-2010 |
Ed Schouten <ed@FreeBSD.org> |
Port the remaining apps in sbin/ to utmpx; only reboot(8).
|
#
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.
|
#
88a8f792 |
| 29-Dec-2009 |
Ed Schouten <ed@FreeBSD.org> |
Add forgotten `void' keyword. This function has no arguments.
|
#
14c69f21 |
| 05-Dec-2009 |
Ed Schouten <ed@FreeBSD.org> |
Let init(8) and reboot(8) use utmpx to log wtmp entries.
logwtmp() gets called with the raw strings that are written to disk. For regular user entries, this isn't too bad, but when booting/shutting
Let init(8) and reboot(8) use utmpx to log wtmp entries.
logwtmp() gets called with the raw strings that are written to disk. For regular user entries, this isn't too bad, but when booting/shutting down, the contents get rather cryptic.
Just call the standardized pututxline().
show more ...
|
Revision tags: release/8.0.0_cvs, release/8.0.0 |
|
#
874108ae |
| 12-Nov-2009 |
Oleksandr Tymoshenko <gonzo@FreeBSD.org> |
MFC @199204
|
#
c574558f |
| 10-Nov-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
More rational usage()
|
#
7d4b968b |
| 17-Sep-2009 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Merge from head up to r188941 (last revision before the USB stack switch)
|
Revision tags: release/7.2.0_cvs, release/7.2.0 |
|
#
1829d5da |
| 12-Mar-2009 |
Warner Losh <imp@FreeBSD.org> |
Update the projects tree to a newer FreeBSD current.
|
#
c09a6b1a |
| 31-Jan-2009 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
Remove and unused variable.
Submitted by: Christoph Mallon christoph.mallon@gmx.de MFC after: 2 weeks
|
Revision tags: release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0 |
|
#
d8f70938 |
| 02-Aug-2006 |
Bruce M Simpson <bms@FreeBSD.org> |
Block a variety of signals which may afffect reboot(8), before killing init(8), to avoid losing a race to them and dying before being able to call reboot(2).
PR: bin/64664 Submitted by: maxim Obtai
Block a variety of signals which may afffect reboot(8), before killing init(8), to avoid losing a race to them and dying before being able to call reboot(2).
PR: bin/64664 Submitted by: maxim Obtained from: NetBSD MFC after: 30 days
show more ...
|
#
b08d1553 |
| 02-Aug-2006 |
Bruce M Simpson <bms@FreeBSD.org> |
Block SIGHUP before killing init(8), to avoid a race condition which may kill the current process and hang the system when attempting reboot.
PR: bin/64664 Reviewed by: ssouhal, phk (historic) MFC
Block SIGHUP before killing init(8), to avoid a race condition which may kill the current process and hang the system when attempting reboot.
PR: bin/64664 Reviewed by: ssouhal, phk (historic) MFC after: 30 days
show more ...
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0 |
|
#
3edf7a78 |
| 22-Mar-2005 |
Pawel Jakub Dawidek <pjd@FreeBSD.org> |
Truncate nextboot.conf file on creation, so existing garbage will be removed.
Submitted by: Gary Allan <dragonfly@gallan.plus.com> Obtained from: DragonFlyBSD MFC after: 3 days
|
#
8d646af5 |
| 10-Feb-2005 |
Ruslan Ermilov <ru@FreeBSD.org> |
Sync program's usage() with manpage's SYNOPSIS.
|
#
36737a0b |
| 25-Jan-2005 |
Xin LI <delphij@FreeBSD.org> |
Code style tweaks: Use static and const where suitable.
|
#
faa0ecdd |
| 25-Jan-2005 |
Xin LI <delphij@FreeBSD.org> |
The kernel specified in main() of reboot(8) will be initialized with -k option and never be used without kflag. This confuses gcc because we set "kflag" at the same time with "kernel", but the logic
The kernel specified in main() of reboot(8) will be initialized with -k option and never be used without kflag. This confuses gcc because we set "kflag" at the same time with "kernel", but the logic is not that apparant for gcc.
Since we can initialize "kernel" to NULL then know if "k" option is set through determining whether it is still NULL, don't try to have gcc to guess why we are connecting "kflag" with "kernel" and use "kernel" directly in place of kflag.
Bump WARNS?= from 2 to 6
show more ...
|
Revision tags: release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0 |
|
#
4c723140 |
| 09-Apr-2004 |
Mark Murray <markm@FreeBSD.org> |
Remove advertising clause from University of California Regent's license, per letter dated July 22, 1999.
Approved by: core, imp
|
Revision tags: release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0 |
|
#
c69284ca |
| 03-May-2003 |
David E. O'Brien <obrien@FreeBSD.org> |
Use __FBSDID() to quiet GCC 3.3 warnings.
|
Revision tags: release/4.8.0_cvs, release/4.8.0 |
|
#
6ab0d6c2 |
| 03-Apr-2003 |
Robert Watson <rwatson@FreeBSD.org> |
When kill(-1) returns ESRCH, it could be because the current process doesn't have a process group, which can occur if you're working with a custom init that doesn't set up a full tty context. Rather
When kill(-1) returns ESRCH, it could be because the current process doesn't have a process group, which can occur if you're working with a custom init that doesn't set up a full tty context. Rather than refusing to reboot, ignore ESRCH from the kill attempt in reboot(8).
show more ...
|
Revision tags: release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs |
|
#
cfde77fb |
| 06-Oct-2002 |
Thomas Quinot <thomas@FreeBSD.org> |
Set only the RB_POWEROFF flag (not the RB_HALT flag) when '-p' is used on the reboot(8) command line.
This is intended for use when you want to attempt a power down action, but you want the system t
Set only the RB_POWEROFF flag (not the RB_HALT flag) when '-p' is used on the reboot(8) command line.
This is intended for use when you want to attempt a power down action, but you want the system to reboot (not halt) if the power down action fails.
This is typically useful when the power-off action performed by the kernel consists in signalling an uninterrupted power supply that it should shut down its inverter if mains power has not returned.
The behaviour of shutdown(8) and init(8) is not modified; only the behaviour of invoking 'reboot -p' manually is modified, and then only in the case when a power-down action fails.
Sounded reasonable to: phk Approved by: roberto (mentor)
show more ...
|
Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs |
|
#
a72b2ac6 |
| 28-May-2002 |
Gordon Tetlow <gordon@FreeBSD.org> |
Correct the file that reboot -k creates so that it works with the new nextboot functionality.
Reviewed by: jake (mentor)
|
#
83739172 |
| 27-Apr-2002 |
Wes Peters <wes@FreeBSD.org> |
Rename the file used to specify the nextboot to make it clear that this is a loader configuration file and can be used for more than just a kernel name.
Submitted by: Gordon Tetlow <gordont@gnf.org>
|