Pawel Jakub Dawidek
4c5739d8f7
geli onetime command can take only one GEOM provider at a time.
2008-08-12 19:42:03 +00:00
Ivan Voras
970a8ddc44
Clean up of dead code and possible unassigned variable usage.
...
Found by: LLVM/Clang Static Checker
Approved by: gnn (mentor)
2008-08-09 16:47:30 +00:00
Dag-Erling Smørgrav
2616144e43
Add sbuf_new_auto as a shortcut for the very common case of creating a
...
completely dynamic sbuf.
Obtained from: Varnish
MFC after: 2 weeks
2008-08-09 11:14:05 +00:00
Sam Leffler
ed8b5a9370
recognize WPS ie's
...
Submitted by: "Chuck Tuffli" <chuck@tuffli.net>
MFC after: 1 week
2008-08-09 05:37:22 +00:00
Antoine Brodin
5718b3f2c0
Make atacontrol(8) rebuild work when /usr is not mounted or from /rescue
...
PR: bin/125680
MFC after: 1 month
Tested by: Stef Walter
2008-08-06 18:08:02 +00:00
Robert Watson
1492a26084
DDB scripting, textdumps, output capture, etc, all will appear in
...
FreeBSD 7.1 before 8.0 ships.
Spotted by: Ulrich Spoerlein <uspoerlein at gmail dot com>
MFC after: 3 days
2008-08-03 14:27:06 +00:00
Andrew Thompson
3b0edf7dd0
Move the grekey to its own file, ifconfig.c does not have interface specific
...
code.
Submitted by: sam
2008-08-03 03:36:12 +00:00
Sam Leffler
87a8e294f5
change list wme to only print the channel parameters; to
...
get channel+bss use -v
2008-08-02 18:10:14 +00:00
Sam Leffler
7842b6be31
don't silently exit if the regdomain.xml file is missing
2008-08-02 18:06:27 +00:00
Julian Elischer
2cc8ab2a83
Slight wordsmithing. prompted by danger@
2008-08-01 23:31:28 +00:00
Julian Elischer
bc20b62b0e
Document the use of the tablearg keyword together with the skipto command.
2008-08-01 22:34:01 +00:00
Sam Leffler
c0f198ca9b
add missing capability bits
2008-08-01 01:27:52 +00:00
David E. O'Brien
a61d918656
Add a -q[uiet] flag for scripts.
2008-07-31 00:55:29 +00:00
Sam Leffler
4a5184dc80
correct description of how to clear a desired channel
...
Pointed out by: Chris Buechler
MFC after: 1 week
2008-07-30 16:22:52 +00:00
Poul-Henning Kamp
68b22388a0
Update routed to use the RFC 3678 protocol-independent multicast API. Use
...
IP_MULTICAST_IF with struct ip_mreqn (obtained from Linux) to tell the
stack which interface index to use for sending IPv4 datagrams.
Submitted by: bms
Tested by: phk
2008-07-30 11:56:15 +00:00
Poul-Henning Kamp
2a6d272c10
Clarify which route property routed(8) looks at.
2008-07-29 23:22:06 +00:00
Konstantin Belousov
89aa52d4db
Note that snapshots may cause a panic on the full UFS filesystem.
...
Submitted by: pho
MFC after: 3 days
2008-07-26 13:18:33 +00:00
Julian Elischer
c7d1bf0bd9
Note that setfib is not a terminal rule.
2008-07-24 18:39:36 +00:00
Kris Kennaway
bf005f321e
Fix -o mntudp after the conversion to default TCP mounts
...
Submitted by: danfe
MFC after: 1 week
2008-07-10 17:53:10 +00:00
Marcel Moolenaar
c4c9b9f50c
Obsolete bsdlabel(8) on powerpc. Use gpart(8) instead.
2008-07-06 20:57:35 +00:00
Marcel Moolenaar
773c9287f5
Make sunlabel specific to sparc64. This is mostly for backward
...
compatibility reasons. Sun labels, with VTOC8, are handled by
gpart(8).
2008-07-04 04:33:33 +00:00
Marcel Moolenaar
d7f5bced19
Stop building bsdlabel(8) and fdisk(8) on ia64. Both tools are
...
obsoleted by gpart(8). This avoids the following bugs in fdisk:
- initializing a disk without MBR bogusly emits the error:
fdisk: invalid fdisk partition table found
- initializing a disk with or without MBR bogusly emits either:
fdisk: Class not found
or
fdisk: Geom not found: "XXX"
- the default geometry for non-ATA and non-SCSI disks is either
invalid or sub-optimizal.
2008-07-03 20:53:15 +00:00
Marcel Moolenaar
b1b657e6b5
Add NO_MAN for the static variant of geom(8). Both the RESCUE and the
...
RELEASE_CRUNCH builds use NO_MAN anyway, so this change is primarily
to avoid that developers have to set NO_MAN manually when they build
the static variant.
2008-07-03 19:40:59 +00:00
Dag-Erling Smørgrav
8f518424d9
Drag this code kicking and screaming into the twenty-first century.
2008-07-02 15:51:59 +00:00
Roman Kurakin
259edd2800
Do not set IFF_DEBUG directly from the driver.
...
MFC after: 1 month.
2008-06-30 21:18:27 +00:00
Ed Schouten
708925463e
Run the privileged dhclient process in its own session.
...
In the MPSAFE TTY branch, I noticed PTY's to be leaked, because
dhclient's privileged process was run inside the session of, say, the
login shell. Make sure we call setsid() here.
Approved by: philip (mentor), brooks
2008-06-30 20:23:49 +00:00
Mike Makonnen
d5e7eb7e92
Support for filtering on major device number was removed in rev. 1.7 or
...
rule.c. Update man page example accordingly.
Submitted by: Mateusz Guzik <mjguzik@gmail.com>
PR: docs/124892
2008-06-27 09:09:50 +00:00
Mike Makonnen
186f2eea49
The signature for a pthread function requires that it
...
return a pointer to a void. The send_thread() and disk_thread()
funtions; however, do not have a return value because they run for
the duration of the daemon's lifetime. This causes gcc to barf when
running with -O3. Make these functions return a null pointer to quiet it.
PR: bin/124342
Submitted by: Garrett Cooper <gcooper@FreeBSD.org> (minus his comments)
MFC after: 1 week
2008-06-26 07:05:35 +00:00
Bjoern A. Zeeb
9a8398173d
Document spindown constraints as given in the original commit
...
message[1] and later clarification provided by phk.
[1] http://docs.freebsd.org/cgi/mid.cgi?200803171033.m2HAXOeN055116
Reviewed by: brueffer, phk, ed
2008-06-25 18:11:22 +00:00
Mike Makonnen
45a5dc937d
Add a -q flag to swapon(8) to suppress informational messages. Use it in
...
rc.d.
Note: errors are not affected by this flag.
2008-06-23 22:17:08 +00:00
Mike Makonnen
d9fcd86c3a
The sysctl(8) program exits on some errors and only emits warnings on
...
others. In the case where it displayed warnings it would still return
succesfully. Modify it so that it returns the number of sysctls that
it was not able to set.
Make use of this in rc.d to display only *unsuccessfull* attempts to
set sysctls.
2008-06-23 22:06:28 +00:00
Andrew Thompson
cd610d1cb9
Ensure the channel is a number and not a range, the 'channel' command can be
...
easily mixed up with 'chanlist' and would give unexpected results by fixing the
channel on the first number in the range.
2008-06-23 16:08:40 +00:00
Alexander Motin
72cbe4adf3
Add exit_delay parameter to control daemon exit delay after signal.
...
PR: bin/58696
Submitted by: sp@alkor.ru
2008-06-22 22:14:02 +00:00
Alexander Motin
b6365f959c
Use strdup() instead of static buffer allocation to avoid 128 bytes limit
...
on -redirect_XXX arguments length.
PR: bin/86647
Submitted by: Stephen Hurd <shurd@sasktel.net>
2008-06-22 21:22:25 +00:00
Dmitry Morozovsky
c94b8307db
Add -v (verbose) option to -l command, to show size and backing store
...
of all md devices at one time.
Approved by: phk
MFC after: 2 weeks
2008-06-21 15:04:42 +00:00
Oleksandr Tymoshenko
032de3f930
Fix spelling
...
PR: kern/124723
Event: Bugathon#5
2008-06-20 21:41:44 +00:00
Andrew Thompson
131c55bc5b
Add support for the optional key in the GRE header.
...
PR: kern/114714
Submitted by: Cristian KLEIN
2008-06-20 17:26:34 +00:00
Marcel Moolenaar
7a4a5cc0f4
Implement the set and unset verbs. While here, have the manpage
...
catch up with various changes.
2008-06-18 01:46:32 +00:00
Marcel Moolenaar
5a96f8396d
Implement the -l and -r options for gpart show.
...
The -l option changes the output to show the partition label, if applicable
and when present. The -r option changes the output to show the raw (i.e.
scheme-specific) partition types.
2008-06-13 00:04:10 +00:00
Marcel Moolenaar
577bc11be5
Remove gpt(8). It's replaced by gpart(8).
2008-06-09 21:30:40 +00:00
Brooks Davis
9761cdd839
Use the -n flag to route(8) when calling "route get". Otherwise we hang
...
for a long time if we get a lease, but DNS isn't working.
MFC after: 1 week
2008-06-09 20:03:35 +00:00
Marcel Moolenaar
1e67a3e2cc
Disconnect gpt(8) from the build. gpt(8) is replaced by gpart(8).
2008-06-09 16:42:55 +00:00
Mike Makonnen
e911e766b1
Document the misleading nature of the REQUIRE line. The patch in
...
the PR has been heavily edited for style(9) and clarity. Mistakes are
mine.
PR: bin/124251
2008-06-09 09:07:58 +00:00
Stanislav Sedov
4f38796595
- Display '-C' option in usage().
...
Approved by: kib
2008-06-08 19:48:41 +00:00
Marcel Moolenaar
c0b5f33d45
Document the new -p and -i options for writing bootstrap code into
...
a partition. Make it clear that the -b option embeds boot code in
the meta-data.
2008-06-07 00:14:06 +00:00
Marcel Moolenaar
3022de951b
Enhance the bootcode command to also allow bootcode to be written
...
to a partition. This avoids that users need to use dd(1) to install
boot code (as is needed for VTOC8 and booting GPT on PCs).
2008-06-06 23:58:29 +00:00
Marcel Moolenaar
59458baf2b
Add two support functions:
...
o gctl_delete_param() -- intended for parameters that are consumed
by geom(8) itself and which should not be passed to the kernel.
o gctl_has_param() -- intended to check if optional parameters are
present.
Both are needed by gpart(8) to process the optional parameter for
writing bootcode to a partition (as part of the bootcode verb).
However, the kernel is itself not involved in this matter and the
parameter needs to be removed from the request destined for the
kernel.
2008-06-06 22:44:03 +00:00
Brian Somers
ec95e4c235
Don't abend if we get ENOMEM from sysctl(3). The data returned
...
is sufficient
MFC after: 2 weeks
2008-06-06 08:59:55 +00:00
Marcel Moolenaar
8c39fe86af
Update the manpage to reflect reality:
...
o The BSD, PC98 and VTOC8 schemes are supported.
o The bootcode command was added to allow installing bootstrap code
into the scheme's metadata.
2008-06-06 05:14:16 +00:00
Marcel Moolenaar
db300278f8
Allow building a static geom(8) for release related crunched
...
binaries. In particular, this allows geom to be added to the
boot_crunch binary on ia64.
2008-06-05 15:24:10 +00:00