Age | Commit message (Collapse) | Author |
|
Not sure what's more surprising: how long it took for NetBSD to
catch up to the rest of the BSDs (including UCB), or the amount of
code that NetBSD has claimed for itself without attributing to the
actual authors.
OK deraadt@
|
|
address in the NATed state key for translation regardless of direction.
Report and testing by david@
|
|
|
|
|
|
is currently linked at. This should eventually be replaced with a proper
alignment construct in the ld script, but it's too hot and too late to
do this correctly and I need a kernel that links (containing stuff to
reach a cvs tree near you reasonably soon).
|
|
able to continue multiple transfers with -C; ok millert@
while here fix some comments (!SMALL vs. SMALL stuff), and add
missing
|
|
Initial information, half the diff, and testing from Andrew Lutomirski,
thanks!
|
|
OpenBSD area and change the 'p' command to only print the boundaries
and size of the OpenBSD area and the free space within that area.
Introduce a 'l' command to print the header only. With krw@; ok krw@
deraadt@; jmc@ for the man page bits
|
|
|
|
- use argv[0] for "Confirm with", as other confirm()s do
- fix confirm cases, pass force=1 for mdelete and mabort too, fixes
a bug when you end up deleting all files when you ^C, instead of
getting a confirmation
- add reput command, that will allow to continue transfer uploads
- add -c for mget and mput, that will allow to continue multiple
transfers
- fix a bug when you use restart command together with put. the
progressmeter would start from zero, and eta would show fictional
time. this actually allows reput/put -c to have correct progressmeter
too
- document everything
discussed with, suggestions, reminded to ifdef SMALL the code so
we're able to fit in floppies, and ok millert@, and jmc@
|
|
|
|
ugly, when we have isnan and isinf
- no need to check for _IEEE, when checking for not-a-number
- remove some impossible checks
- while here, drem->remainder, as drem is just an obsolete alias
now
ok millert@
|
|
|
|
instead of malloc;
OK hshoexer@ and macro@
|
|
|
|
just handling the vax different (just vax for now, 'cause tahoe might even
be too legacy for Miod)
ok miod
|
|
|
|
(EDD) is found and OK. it will also fix chainloading into OpenBSD from
grub in a few scenarios where grub doesn't report the CHS correctly
but the LBA. and we don't need CHS if there is LBA.
this has been in the snapshots for a while.
with input from weingart@
ok deraadt@
|
|
some AMD Geode LX systems with CS5536 companion chip. It works
similar to auich(4) and auixp(4), but the hardware dependent parts
are quite different.
Tested with various PC-Engines ALIX boards (1B, 3C3) and a WebDT 186
board.
feedback many, ok deraadt & jmc (documentation)
|
|
extended DOS partition. the concept of extended partitions is very
simple, it is just another mbr at the partition offset (well, the
standard "EBR" is a linked list with a few limitations, but this diff
works with both variants).
this diff has been in the snapshots for a while.
with input from weingart@ and krw@
ok deraadt@
|
|
|
|
|
|
|
|
now that we support all the _r functions required by POSIX 1003.1-2001.
Also define _POSIX_REENTRANT_FUNCTIONS. OK kurt@ deraadt@
|
|
and _SC_THREAD_SAFE_FUNCTIONS for sysconf(3). OK deraadt@
|
|
the buffer size. OK deraadt@
|
|
|
|
|
|
|
|
|
|
ok grunk@ djm@
|
|
|
|
ok mglocker@
|
|
|
|
sparc64. The rest will come later. okay drahn@ no objection miod@
"Get it in" deraadt@
|
|
"Slackers!" deraadt@
|
|
|
|
empty stubs (access.conf-dist/srm.conf-dist) or poor example configs
for "high performance" which users are much better served by actually
reading the documentation and understanding what they're doing.
ok deraadt@
|
|
systems) because the RX chain was corrupted when an mbuf was mapped to
an unexpected number of buffers.
From davidch@FreeBSD
|
|
own page 0, as discussed with miod (and many others previously, including
art and toby). On sparc, make this __LDPGSZ because PAGE_SIZE is non-constant
ok miod tedu
|
|
options left of the old tuning list, and it makes sense to have one list
now
- document -T. this was requested by todd (fries), and comes largely from
the description in netbsd's page of the same name
ok millert otto
|
|
|
|
|
|
|
|
groups map but instead tells us that it is there. then use this interface
in getgrouplist(), and do a single lookup against netid.byname instead to
get all the groups associated with that user
ok kurt, testing by many others
|
|
entire file. much help from kurt, and tested by many
|
|
|
|
- tweak CAVEATS, as requested by marco
ok hshoexer marco
|
|
interpret it as octal, leading to error messages like "048" is not a
number.
ok krw
|
|
===================================================================
RCS file: /cvs/src/sbin/growfs/growfs.c,v
retrieving revision 1.23
diff -u -p -r1.23 growfs.c
--- src/sbin/growfs/growfs.c 5 Oct 2007 13:56:14 -0000 1.23
+++ src/sbin/growfs/growfs.c 4 Jun 2008 10:10:32 -0000
@@ -2227,7 +2227,7 @@ usage(void)
DBG_ENTER;
- fprintf(stderr, "usage: growfs [-Ny] [-s size] special\n");
+ fprintf(stderr, "usage: growfs [-Nqy] [-s size] special\n");
DBG_LEAVE;
exit(1);
|