| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Correct terminology (partitions are in slices, not the other way around)
|
|
|
|
|
|
|
|
| |
Add -v flag to newfs:
-v Specify that the partition does not contain any slices, and that
newfs should treat the whole partition as the file system. This
option is useful for synthetic disks such as ccd and vinum.
|
|
|
|
|
|
| |
kernel supports them, and the force option will be more important
when mounting of unclean ext2fs file systems is not permitted unless
it is forced.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
standard places ("/etc/objformat", ${OBJFORMAT}, argv) for an
indication of the user's preferred object file format. This
consolidates some code that was starting to be duplicated in more
and more places.
Use the new function in ldconfig.
Note: I don't think that gcc should use getobjformat(), even though
it could. The compiler should limit itself to functions that are
widespread, to ease porting and cross-compilation.
|
|
|
|
|
|
|
|
|
|
|
| |
MAP_FAILED.
Don't try to extend the mapping in place if it is too short.
There's no guarantee it will be possible. Remap the file instead.
Put in a few style fixes.
Submitted by: Bruce Evans <bde>
|
|
|
|
| |
version numbers.
|
|
|
|
| |
regions properly and this triggers an unaligned access trap.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
a different file than the a.out hints, namely, "/var/run/ld-elf.so.hints".
These hints consist only of the directory search path. There is
no hash table as in the a.out hints, because ELF doesn't have to
search for the file with the highest minor version number. (It
doesn't have minor version numbers at all.)
A single run of ldconfig updates either the a.out hints or the ELF
hints, but not both. The set of hints to process is selected in
the usual way, via /etc/objformat, or ${OBJFORMAT}, or the "-aout"
or "-elf" command line option. The rationale is that you probably
want to search different directories for ELF than for a.out.
"ldconfig -r" is faked up to produce output like we are used to,
except that for ELF there are no minor version numbers. This should
enable "ldconfig -r" to be used for checking LIB_DEPENDS in ports
even for ELF.
I implemented the ELF functionality in a new source file, with an
eye toward eliminating the a.out code entirely at some point in
the future.
|
| |
|
| |
|
|
|
|
|
| |
PR: 7778
Submitted by: horikawa@jp.freebsd.org
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
extremely useful for networking testing. Other options secured from
user-level D.O.S. attacks. -f, -s now root-only. -i wait times < 1.0
root-only. -c count limited to 100 and defaults to 16 when ping run
by non-root user.
|
| |
|
|
|
|
|
| |
The previous attempt just converted compile time breakage to runtime
breakage.
|
| |
|
| |
|
|
|
|
| |
Added some comments on #endifs.
|
| |
|
|
|
|
| |
ldconfig isn't required.
|
|
|
|
|
|
| |
bug was the cause of the 'freeing free frag' panics that people have been
seeing with FreeBSD/alpha. I have a similar patch to newfs but I've not
finished testing it.
|
| |
|
|
|
|
|
| |
in an ELF world. This will have to be revisited when the kernel
moves to ELF.
|
|
|
|
| |
Inspired by bdes comment to PR: 7419
|
| |
|
|
|
|
|
| |
Added support for -q (suppress output) when firewall rules are taken from a
file. Solves PR 7475
|
|
|
|
|
|
|
|
|
|
|
| |
support, which need a final "\n". I only observed one line of
mangled output, but I think there is another one which suffers
from the same problem, and thus I provide a patch that covers
both.
PR: 7483
Reviewed by: phk
Submitted by: Stefan Esser <se@FreeBSD.org>
|
|
|
|
| |
terminate errx() string. Remove unused #includes. Use .Tn for NFS.
|
|
|
|
| |
Add rcsid, remove unused #includes. Sync usage() and SYNOPSIS.
|
|
|
|
| |
Sort #includes. Add rcsid.
|
|
|
|
| |
Add rcsid, rmove unused #include. Spelling.
|
|
|
|
| |
Remove unused #include.
|
| |
|
| |
|
| |
|
|
|
|
| |
underflow on the alpha.
|
|
|
|
| |
Reminded by: bde
|
|
|
|
|
|
|
| |
This appears to work for me in the old case, but I don't have large
enough filesystems to test the fix case.
Reported working by: karl@mcs.net
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Convert 1000000 usec to 1 sec 0 usec.
Use provided safe malloc (rtmalloc()) instead of malloc(): exit on allocation
failure.
Correct use of .Nm
Add usage() and use errx().
|
|
|
|
|
| |
returns -1. Correct use of .Nm. Spelling. Add rcsid and remove unused
#include.
|
|
|
|
| |
cleanings. Spelling.
|
|
|
|
|
|
| |
kernel+userland when that is the case.
PR: bin/7414
|
|
|
|
|
|
|
|
| |
- nonstandard sector sizes didn't work because the sector size in the
ASCII label was not read before a (default, wrong) sector size was used.
- the exit status was 0 after exiting early due to an invalid ASCII label.
Abort `disklabel -B...' if the secondary bootstrap doesn't fit.
|
|
|
|
|
|
|
|
|
|
|
| |
contain code that compare a char pointer with a char. As this
doesn't make much sense, it looks very much as if a '*' has been
dropped by mistake. I have made no analysis of the possible
consequences of the problem.
PR: 7319
Reviewed by: phk
Submitted by: Anders Thulin <Anders.X.Thulin@telia.se>
|