Thomas Moestl
036c2cfbfa
Allow to write the intpin ivar using the pci_set_intpin() accessor. There
...
are some Sun PCI devices around which bogusly set intpin to 0, although
they use the intline mechanism; this allows the device driver to correct
that.
Reviewed by: imp
2003-07-01 13:54:10 +00:00
Ruslan Ermilov
3cc956548f
Put rescue/ into a correct slot in the SUBDIR list. Sort bootstrap-,
...
build-, and cross-tools lists, reformat lists for easier maintenance.
Submitted by: bde, ru
2003-07-01 12:57:53 +00:00
Bruce Evans
270f6e44db
Fixed some style bugs.
2003-07-01 12:30:03 +00:00
Ruslan Ermilov
a3d6b3e7d7
Only bootstrap crunchide(1) and build crunchgen(1) when necessary.
...
The latter needs to be built either if it's used as a cross-tool
(${TARGET_ARCH} != ${MACHINE_ARCH}) or if it has backward compat
issues, like e.g. lack of the AMD64 support.
2003-07-01 12:25:11 +00:00
Josef Karthauser
5d37567d73
Regen.
2003-07-01 12:17:18 +00:00
Josef Karthauser
4f1e4d55e7
USB scanner support for Mustek BearPaw scanner.
...
Submitted by: netchild
2003-07-01 12:16:46 +00:00
Bruce Evans
f5bdb0f7bd
Fixed namespace pollution and unsorting of the 1003.1-1990 list in
...
previous commit.
2003-07-01 12:09:06 +00:00
Hidetoshi Shimokawa
2c56e6e419
Fix tsleep/wakup race on FreeBSD-4.
2003-07-01 12:03:54 +00:00
Tom Hukins
8b582d6ee0
Add the British hundredweight (brhundredweight). For discussion, see:
...
http://london.pm.org/pipermail/london.pm/Week-of-Mon-20030630/019926.html
For a definition, see:
http://www.bartleby.com/61/55/H0325500.html
Also add some more computing terms described at:
http://www.wikipedia.org/wiki/Integral_data_type
Reviewed by: dwmalone
MFC after: 2 weeks
2003-07-01 10:33:27 +00:00
Alfred Perlstein
9470460d7a
Don't segfault if setproctitle(3) is called with NULL initially.
...
The old buffer was not being initialized and a later str*() op on
it would cause a crash if it wasn't initialized by a previous
call to setproctitle(3) with an actual string.
Noticed by: Ashley Penney <ashp@unloved.org>
2003-07-01 09:45:35 +00:00
Josef Karthauser
6b38550512
Regen.
2003-07-01 08:46:55 +00:00
Josef Karthauser
702966f238
Support the Epson GT-9300UF usb scanner.
...
PR: kern/53929
2003-07-01 08:46:01 +00:00
Greg Lehey
8517ec8be1
free_drive: Free the drive even if it's referenced. I don't know what
...
I was smoking when I wrote this stuff, but another fix resulted in
every partition in the system being entered as a "referenced" drive.
2003-07-01 07:53:54 +00:00
Alan Cox
c53e8c5654
Modify vm_page_alloc() and vm_page_select_cache() to allow the page that
...
is returned by vm_page_select_cache() to belong to the object that is
already locked by the caller to vm_page_alloc().
2003-07-01 07:33:41 +00:00
Alan Cox
8526ce9b64
Check the address provided to vm_map_stack() against the vm map's maximum,
...
returning an error if the address is too high.
2003-07-01 03:57:25 +00:00
Christian Brueffer
89a14234bd
Add the beastie_disable variable which allows to turn the beastie
...
boot menu on and off.
Reviewed by: scottl
2003-07-01 01:03:32 +00:00
Ian Dowse
ff1db98495
Separate the description of the flags for mount(2) and unmount(2)
...
to clarify which system call accepts which arguments. Previously
the manual page gave the impression that calling unmount() with
flags of (MNT_FORCE | MNT_UPDATE | MNT_RDONLY) would downgrade a
read-write mount to read-only, which is clearly untrue; to do that,
these flags should be passed to mount() instead.
2003-06-30 22:22:12 +00:00
Mike Makonnen
3b5ba84fd2
Have mktemp(1) construct the temporary file name for us instead
...
of providing a template manually.
Submitted by: Lars Eggert <larse@isi.edu>
2003-06-30 22:06:26 +00:00
Brooks Davis
a83659958b
Allow diskless_remount files to contain path beginning with / which will
...
be mounted relative to the NFS root mountpoint.
Reviewed by: dillon at backplane.com
MFC After: 3 days
2003-06-30 21:47:06 +00:00
Gordon Tetlow
a3367e4f2e
Remove mount_portalfs, it's just wrong in this context.
2003-06-30 21:13:56 +00:00
John-Mark Gurney
094dc7e3b9
move maxsegsz down a bit so that the arg definition order matches the
...
calling order.
2003-06-30 20:20:51 +00:00
Ruslan Ermilov
fdcdec572a
Propagate the ${AINC} knob (assembler include) to sys.mk,
...
and remove the .S.o transformation rule from bsd.lib.mk.
2003-06-30 20:02:46 +00:00
Ruslan Ermilov
70d9bc066f
Removed suffix-transformation rules that are duplicates
...
(or are subsets) of the corresponding rules in sys.mk.
2003-06-30 19:48:14 +00:00
Ruslan Ermilov
5497021b71
Catch up with bsd.lib.mk,v 1.143.
2003-06-30 19:11:20 +00:00
Ruslan Ermilov
bc80c08e61
bsd.lib.mk,v 1.143 no longer uses ld(1) directly to strip
...
symbols from intermediate object files, so these hacks to
get AMD64 compile are no longer needed.
Tested on: sledge.FreeBSD.org
2003-06-30 19:08:49 +00:00
Ruslan Ermilov
ea90b1f55d
The use of ld(1) to strip compiler local and non-global
...
symbols from object files has bitrotted over the last
thirteen years, and it now does more harm than good.
An attempt to work around the problems caused by using
ld(1) for stripping was to pass LDFLAGS to the ld(1)
command, but this was not right either as ${LDFLAGS}
should, by design, be used with cc(1) and not ld(1).
One of the proposed solutions was to use the objcopy(1)
utility to do the strip work, and the other would be to
use strip(1), but Bruce Evans suggested not stripping
any symbols at all. This works by leaving the grunt
work to the final strip(1) command (when installing the
binary).
Submitted by: bde
2003-06-30 19:03:56 +00:00
Gordon Tetlow
107e6cda51
Don't build mount_nwfs or mount_smbfs in rescue.
...
Build fdisk_pc98 on pc98 arch, not fdisk.
Don't alias disklabel on pc98, ia64.
Don't build fdisk on sparc64, alpha.
Pointed out by: tmm@
Submitted by: Tim Kientzle <kientzle@acm.org>
2003-06-30 18:18:05 +00:00
Alexander Kabaev
be0d01f895
Rename a local variable in order to avoid collision with standard 'log'
...
function.
2003-06-30 17:05:40 +00:00
Tom Rhodes
f74dd4e7cc
Properly use ld.so.conf and ld-elf.so.conf as discussed in the manual page.
...
PR: 25527
Submitted by: Alexey Neyman <alex.neyman@auriga.ru>
Reviewed by: jdp
2003-06-30 15:02:05 +00:00
Tony Finch
eb801906b8
Various fixes from upstream, including a bug...
...
Fix the usage synopsis.
Amend the copyright notice to reflect the fact that there's no Berkeley
code left.
Fix a typo in a comment, improve the descriptions of the way we use
some global variables (relevant to the bug below), and note that
division-by-zero has side effects so the current expression evaluator
can't be trivially extended to arithmetic in its current design.
Avoid hitting an abort(); /* bug */ when in "text mode" (i.e.
ignoring comment state) by updating the line parser state properly.
PR: 53907
2003-06-30 14:46:25 +00:00
Ruslan Ermilov
6c874d4fa8
Switch to using bsd.prog.mk; this gives us back the standard
...
.s.o transformation rule.
2003-06-30 14:10:58 +00:00
Ruslan Ermilov
6de4623bfe
MFi386: revision 1.19.
2003-06-30 12:53:39 +00:00
Mike Makonnen
fadd82e367
Catchup with _thread_suspend() changes.
2003-06-30 12:35:31 +00:00
Maxim Konovalov
fe9f481f9d
o Fix identation.
2003-06-30 11:51:21 +00:00
Maxim Konovalov
ed10a496b1
o Support for '--' to cancel options list processing.
...
PR: bin/32433
Prodded by: Zak Johnson <zakj-freebsd-hackers@nox.cx>
Obtained from: easyedit-1.4.6
MFC after: 2 weeks
2003-06-30 11:49:00 +00:00
David Xu
df9c6cda37
Fix typo.
2003-06-30 10:04:04 +00:00
Hidetoshi Shimokawa
170e7a20d0
Include file clean up.
2003-06-30 06:33:18 +00:00
David Xu
5af40bb68a
Because there are only _SIG_MAXSIG elements in thread siginfo array,
...
use [signal number - 1] as subscript to access the array.
2003-06-30 06:16:50 +00:00
John-Mark Gurney
529a7167bd
pass -1 to setfile in cp.c
...
Submitted by: Jun Kuriyama
2003-06-30 06:16:06 +00:00
Gordon Tetlow
4e650399de
Do the deed and hookup /rescue to the build. As a result, always build
...
crunchgen and crunchide as cross-tools.
Submitted by: Tim Kientzle <kientzle@acm.org>
2003-06-30 05:59:35 +00:00
David Xu
a913c5dd9d
Remove surplus unlocking code I accidentally checked in. This won't be
...
triggered until LDT entry is exhausted.
2003-06-30 05:49:06 +00:00
Sam Leffler
3d238d9e98
nitpicking
...
Submitted by: Ruslan Ermilov <ru@FreeBSD.org>
2003-06-30 05:25:36 +00:00
Mike Heffner
77c4370ef2
This commit was generated by cvs2svn to compensate for changes in r117059,
...
which included commits to RCS files with non-trunk default branches.
2003-06-30 05:24:21 +00:00
Mike Heffner
fa547236e7
Import latest cvs version with the correct patchset (fixes ETA bug).
2003-06-30 05:24:21 +00:00
Sam Leffler
d8409aaf6e
consolidate callback optimization check in one location by adding a flag
...
for crypto operations that indicates the crypto code should do the check
in crypto_done
MFC after: 1 day
2003-06-30 05:09:32 +00:00
Gordon Tetlow
9b6e332f08
Fix fdisk naming issues on pc98 and other platforms.
...
Fix disklabel, bsdlabel, and sunlabel on various platforms.
Noticed by: tmm@
Submitted by: Tim Kientzle <kientzle@acm.org>
2003-06-30 05:06:43 +00:00
Sam Leffler
5d1dbc0e55
correct transfer statistics
...
Submitted by: Larry Baird <lab@gta.com>
MFC after: 1 day
2003-06-30 05:05:19 +00:00
Sam Leffler
5f3721d5ca
acknowledge the contribution of Atsushi Onoe
2003-06-30 04:51:11 +00:00
Matthew Hunt
765ef38fe9
Correct spelling of "TracyChapman".
2003-06-30 03:16:41 +00:00
Ruslan Ermilov
c173771625
MFi386: revision 1.16.
2003-06-30 00:20:28 +00:00