Commit Graph

145755 Commits

Author SHA1 Message Date
christos
03c0fd3fc6 change an int to size_t 2006-04-08 23:27:03 +00:00
christos
a0d45c2607 Need stdio.h if debug. 2006-04-08 23:24:44 +00:00
wiz
95afc5b6be Reword "works best with 32 MB, but at least 64 MB is advised" as "works with 32MB...". 2006-04-08 23:14:10 +00:00
wiz
65236f0cee Fix date (no leading zero); use Dq. 2006-04-08 23:12:13 +00:00
wiz
94331e28dc Add RCS Id. Fix Nx argument. 2006-04-08 23:10:40 +00:00
wiz
bd3d86b969 Add RCS Id. 2006-04-08 23:10:03 +00:00
wiz
91bfc3f2c9 Formatting nits. 2006-04-08 23:05:38 +00:00
wiz
3598f93379 Fix date (no leading zero), fix xref: sticky(7) not (8). 2006-04-08 22:39:39 +00:00
uwe
8398f3ff65 Whitespace nit. 2006-04-08 22:33:36 +00:00
jschauma
b338995776 Address PR 30374 as suggested in there:
"Modify the man page to match the behaviour of "ls -q",

(done by yamt@ previously)

...
modify both the behaviour and documentation for "ls -b" and "ls -B" to
make spaces readily apparent.  This could be done by adding VIS_WHITE
to the flags passed to strvis(3) in the safe_print() function in
src/bin/ls/util.c."

'ls -b' now yields foo\sbar (whitespace) foo\tbar (tab) foo\rbar (CR).
'ls -B' now yields foo\040bar foo\011bar foo\015bar.
2006-04-08 22:28:06 +00:00
christos
f5804cdea3 make sure p is initialized. 2006-04-08 22:05:36 +00:00
christos
d2bf424ee0 remove bogus declaration. 2006-04-08 21:33:09 +00:00
christos
4b5dc3b5a8 - wrap memspace {}, pointed out by rui.
- comment out the memspace none case, pointed out by rui.
- move declarations to the top to avoid brace mess.
2006-04-08 20:55:22 +00:00
christos
258969c334 Include bsd.own.mk; from Jukka Salmi 2006-04-08 20:07:29 +00:00
christos
c2909c51dd Split the tuple parsing code in its own function for each kind, instead of
having a single parsing function that has more than 1000 lines of code.
2006-04-08 20:01:21 +00:00
wiz
a694f1af51 Put Ic argument directly after the macro, instead of
on the following line.
2006-04-08 19:54:08 +00:00
peter
75b167e81d Bump build number as requested by Uwe. 2006-04-08 16:27:25 +00:00
rpaulo
abddbf01be Back out rev 1.42 and 1.43. It's been causing much more hassle than it should
and I don't feel like continue arguing about it.
2006-04-08 15:59:59 +00:00
tnozaki
ffcda0dc45 fix wrong token, s/DST_ILSEQ/DST_INVALID/. 2006-04-08 15:47:39 +00:00
peter
f75a258915 The altgr button has number 184, not 219. Change the jornada 720
key translation tables to use the correct number.

Patch for the US/UK model has been tested by Alex Poylisher & Mark Kirby.
2006-04-08 15:03:19 +00:00
cherry
1163d9a877 Copyright audit and CVS header sweep. 2006-04-08 14:52:09 +00:00
tnozaki
451ff41269 fix typo, s/ISO-5427/KOI7/ 2006-04-08 14:26:45 +00:00
tnozaki
a3e63d71ca add following encoding support to iconv:
* KOI-7(iso-ir-37, iso-5427)
	* KOI-8(old KOI8)
	* KOI7-switched(iso-2022 variant)
	* KOI8-C -- Pablo Saratxaga's  X_LOCALE KOI8-C(Caucasus)
	* KOI8-CyrillicOld -- Serge Winitzki's KOI8-C(Cyrillic-Old)
	  ** not exported yet **
	* KOI8-E(iso-ir-111, ecma-cyrillic)
	* KOI8-RU
	* KOI8-T
2006-04-08 14:15:48 +00:00
rpaulo
3828a8c073 Explain where did the IPv6 support came from. 2006-04-08 13:58:24 +00:00
tsutsui
ce53cc60f2 Enable some more options and devices:
http://mail-index.netbsd.org/port-cobalt/2006/04/06/0000.html

Tested by several people on port-cobalt.
2006-04-08 12:41:11 +00:00
peter
2201fcf579 Recompile. 2006-04-08 12:26:55 +00:00
rpaulo
a758ab2541 Explain IFHEAD ioctls. They also disable SLMODE and they SLMODE disables
IFHEAD.
From FreeBSD.
2006-04-08 12:16:55 +00:00
rpaulo
58e5792e6a IFHEAD and PREPADDR are mutually exclusive. From FreeBSD. 2006-04-08 12:14:42 +00:00
yamt
3dc055fb76 s/non-graphic/non-printable/ to match with the code. 2006-04-08 12:04:22 +00:00
perseant
39ce23c169 Implement a somewhat finer-grained mechanism for paging LFS-backed pages.
The writer daemon, if it does not need to flush the whole filesystem,
now only writes the vnodes for which the pagedaemon has requested pageouts
(although it does not pay attention to the page ranges the pagedaemon
supplies).
2006-04-08 00:26:34 +00:00
perseant
ff84dd347a Keep the free list ordered. This solves a problem first pointed out to me
by Michel Oey, in which an aged LFS writes up to an extra Ifile block for
every file created; and paves the way for the truncation of the Ifile when
many files are deleted.
2006-04-08 00:16:56 +00:00
perseant
7c22dcc8a6 Several minor bug fixes:
* Correct (weak) segment lock assertions in lfs_fragextend and lfs_putpages.
* Keep IN_MODIFIED set if we run out of avail in lfs_putpages.
* Don't try to (re)write buffers on a VBLK vnode; fixes a panic I found
  while running with an LFS root.
* Raise priority of LFCNSEGWAIT to PVFS; PUSER is way too low for
  something the pagedaemon is relying on.
2006-04-07 23:59:28 +00:00
perseant
d28248e84e Make the segment lock aware of LWPs. Fixes a (somewhat confusing)
"lockmgr: pid 3997, not exclusive lockholder 3997, unlocking" panic I
encountered while running blogbench on an LFS.
2006-04-07 23:44:14 +00:00
uwe
712aacb6d4 Add missing $ sign at the end of the NetBSD rcsid tag. 2006-04-07 20:03:52 +00:00
mrg
0db1500b43 retire HAVE_GCC3/HAVE_GCC4 and introduce HAVE_GCC that is set to 2, 3 or 4. 2006-04-07 19:38:58 +00:00
riz
b657491b28 Add entry for onewire(4), gpioow(4), and owtemp(4), and add myself
as RESPONSIBLE.
2006-04-07 19:03:00 +00:00
riz
26b33f2587 Regen. 2006-04-07 18:56:37 +00:00
tsutsui
98544ead5e Add include "dev/usb/files.usb". 2006-04-07 18:55:58 +00:00
riz
637bfc29f9 Dallas Semiconductor 1-Wire bus support, from OpenBSD. Currently includes
gpioow(4), attaching a bit-banging driver via a GPIO pin.  Also,
owtemp(4) which supports some of the 1-Wire temperature sensors, including
the DS18b20 and DS1920 - temperatures are returned via the envsys(4)
framework.

Original drivers by Alexander Yurchenko (grange@openbsd), with envsys(4)
support and a fix to the 1-wire search algorithm (for discovering
devices on the bus) by me.

As discussed on tech-kern earlier this week.
2006-04-07 18:55:21 +00:00
macallan
5b93dbb4b1 avoid using vgahw and int10 on macppc, sparc and sparc64 since we never use
VGA textmode on this hardware.
Fixes errors like this:
xf86MapVidMem: could not mmap screen [s=20000,a=a0000] (Invalid argument)
2006-04-07 17:52:55 +00:00
cherry
7056f5194b Initial import of arch/ia64 sources.
These sources are ported from FreeBSD/ia64 code.
See individual source files for credits.
In addition, code from NetBSD/alpha NetBSD/sparc64,
NetBSD/i386 and NetBSD/amd64 were used as templates,
along with my own additions.
2006-04-07 16:23:08 +00:00
gdamore
232fbf8220 OMSAL-400 and MTX-1 should only be built little endian. 2006-04-07 15:26:59 +00:00
drochner
3d2bb104a8 don't include opt_wsdisplay_border.h here, to limit dependencies 2006-04-07 14:30:20 +00:00
cherry
39ba8074f1 Fixed CVS version headers 2006-04-07 14:27:33 +00:00
cherry
ba7cbe760f Initial import of arch/ia64 sources.
These sources are ported from FreeBSD/ia64 code.
See individual source files for credits.
In addition, code from NetBSD/alpha NetBSD/sparc64,
NetBSD/i386 and NetBSD/amd64 were used as templates,
along with my own additions.
2006-04-07 13:57:43 +00:00
cube
7db196715b Protect config(1)-generated include files inclusion with
#ifdef _KERNEL_OPT.  ACPI-CA might be used by standalone code in the
future.  Suggested by cherry@.
2006-04-07 13:49:20 +00:00
drochner
9a7f5fbd60 cdk is obsolete 2006-04-07 12:40:10 +00:00
yamt
88cde7b8a8 prefix local labels with ".L". 2006-04-07 12:07:55 +00:00
rpaulo
706d49d37b postfix 2.2.10 2006-04-07 11:27:04 +00:00
drochner
2f9ef14bcf make this compile w/o KTRACE,
resolves PR kern/33212 by KIYOHARA Takashi
2006-04-07 09:23:16 +00:00