obrien
a129a54f62
Special case the foreign platform vs. the native one.
2002-01-28 19:08:29 +00:00
obrien
61c46e0b0b
Upgrade to a Binutils 2.12.0 snapshot.
2002-01-28 19:07:31 +00:00
obrien
60e24208f0
GC code that moved to crtbrand.c.
2002-01-28 19:02:34 +00:00
obrien
474da9b45d
Support cross building from 64-bit machines.
2002-01-28 19:00:11 +00:00
obrien
2bc573d950
Upgrade to a Binutils 2.12.0 snapshot.
2002-01-28 18:58:59 +00:00
obrien
8a24e4cfa0
Upgrade to a Binutils 2.12.0 snapshot.
2002-01-28 18:52:26 +00:00
yar
0355f3828e
Keep similar things together: Check for too long usernames
...
inside the function that verifies username validity.
2002-01-28 17:59:09 +00:00
yar
261a4fd963
Disallow adding duplicate roots, toors, or other users w/uid 0.
...
Previously, a truth check instead if defined() check erroneously
allowed that.
PR: bin/8745
2002-01-28 17:30:12 +00:00
yar
a2c8c06218
Implement a flexible way of letting some unusual characters
...
into usernames: Make the regular expression to check usernames
against configurable.
PR: bin/22860 bin/31049
Reviewed by: sheldonh
2002-01-28 17:03:13 +00:00
yar
35ba356060
Remove the newly added -force option because it made adduser(8)
...
less robust to possible errors of the user/admin while adduser(8)
had been intended to minimize their possibility.
An alternative way of introducing strange symbols into usernames
to be committed really soon.
2002-01-28 16:37:35 +00:00
ume
fd850072e8
Log wtmp according to an address family properly.
...
Reported by: matusita
Reviewed by: matusita
MFC after: 1 week
2002-01-28 14:50:07 +00:00
gallatin
cffbd57403
Simple fixes to get the powerpc kernel compiling again.
...
Reviewed by: mp
2002-01-28 14:07:36 +00:00
ru
2137f05783
Remove a stray :' after
v' in the getopt() call.
...
Submitted by: bde
2002-01-28 13:43:22 +00:00
sos
6c8ad084e0
Add support for the Promise TX4.
...
Rearrange the support for the VIA chips, and add experimental
support for ATA133 on the newest chips.
2002-01-28 13:17:10 +00:00
sos
e6cd71c92f
Enable pccard support.
2002-01-28 13:13:14 +00:00
sos
7b3bdcb03c
Add support for pccard.
...
submitted by: imp
2002-01-28 13:12:16 +00:00
obrien
446873d787
The list of not-wanted and needed files for the binutils_anoncvs_20020127
...
import.
2002-01-28 12:51:19 +00:00
obrien
2ecb30eb93
Explain how I did the binutils_anoncvs_20020127 import.
2002-01-28 12:50:53 +00:00
sheldonh
3a31fa4b4f
(forced commit)
...
The previous change is subject to:
MFC after: 1 month
2002-01-28 11:06:02 +00:00
sheldonh
c8bf94da48
Register amd's dependency on NFS.
...
This change was submitted to the freebsd-audit mailing list for review
but received no feedback. Hindsight-enabled reviews are welcome.
PR: conf/31358
Submitted: Thomas Quinot <thomas@cuivre.fr.eu.org>
2002-01-28 11:05:01 +00:00
ru
8c5c420dd3
GC the -W option. kvm(3) doesn't read swap for almost 10 years.
...
PR: docs/34134
Reviewed by: bde, peter
MFC after: 1 month
2002-01-28 09:43:26 +00:00
ache
a68692c6f2
Do not try to convert to char already converted C monetary locale members.
...
Do this conversion on locale load stage instead.
2002-01-28 08:26:38 +00:00
imp
119a6ca6f1
Add ADLINK340C wireless card mentioned in nomads.
...
# This card has the same PCMCIA and OEM id as ELSA XI300 wireless card, which
# appears to be listed elsewhere in this file.
Submitted by: Abe Toshiaki-san <ans@sun-tec.co.jp>
MFC After: 5 days
2002-01-28 04:46:20 +00:00
grog
05ab079c69
Remove references to raw devices.
...
Submitted by: mbr
Approved by: re
2002-01-28 04:26:29 +00:00
joe
3311f87be6
Merge from NetBSD.
...
uhub.c: revision 1.37
usb.4: revision 1.30
usb.c: revision 1.38
usb.h: revision 1.40
usb_port.h: revision 1.21
usb_subr.c: revision 1.65
usbdi.h: revision 1.40
Split the attach/detach events up into device, driver and controller
attach and detach events.
The commit message from NetBSD was:
date: 2000/02/02 07:34:00; author: augustss; state: Exp;
Change the USB event mechanism to include more information
about devices and drivers. Partly from FreeBSD.
Also rework usbd to take these new event types into account.
2002-01-28 01:03:19 +00:00
joe
df86bfa3eb
Sync with NetBSD's version.
2002-01-28 00:48:28 +00:00
scottl
336ec4d2e7
Recent changes to newpcm require that the CHANNEL_SETFORMAT op return 0
...
for success, non-zero otherwise. The maestro and maestro3 drivers were
returning the format code, which was being interpreted as a failure code.
Fixed. No one seems to have noticed that the maestro driver was broken,
but I'll fix it anyways.
MFC after: 2 weeks
2002-01-27 23:09:41 +00:00
obrien
c3958d9a9e
Change the way the version strings are handled.
2002-01-27 22:47:22 +00:00
peter
b91a8c787a
This commit was generated by cvs2svn to compensate for changes in r89884,
...
which included commits to RCS files with non-trunk default branches.
2002-01-27 22:41:09 +00:00
gallatin
7e0bbcf238
Prevent the kernel from generating an unaligned sysctl data buffer on
...
64-bit platforms. The unaligned access is caused by struct ifa_msghdr
not being a multiple of 8-bytes in size. If an interface has an odd
number of addresses, this causes the next interface to generate an
unaligned access in the user-level app walking the interfaces (ifconfig).
Submitted by: Bernd Walter <ticso@cicely8.cicely.de>
2002-01-27 20:39:01 +00:00
mike
7e26e18582
Add -o option (POSIX.1-2001) to uudecode(1). Deprecate the -p option
...
(which allows one to redirect output to stdout); `-o /dev/stdout' is
recommended instead.
Submitted by: Joseph Mallett <jmallett@xMach.org>
MFC after: 2 weeks
2002-01-27 18:21:23 +00:00
nectar
9fdf88975b
= Fix temporary file handling.
...
Obtained from: Immunix Linux
= Garbage collect now-unused temporary file handling functions.
= Add __FBSDID.
2002-01-27 16:43:35 +00:00
obrien
394d763b84
Upgrade to a Binutils 2.12.0 snapshot.
2002-01-27 13:10:59 +00:00
obrien
f57b42ad43
Style fix.
2002-01-27 13:09:36 +00:00
obrien
c78e4b6619
Add files new with 2.12.0.
2002-01-27 13:09:08 +00:00
obrien
5cc11d4ce9
Style fixes.
2002-01-27 13:04:21 +00:00
obrien
137490f70d
Add files new with 2.12.0.
2002-01-27 13:03:58 +00:00
obrien
8e316b696c
We are now at a 2.12.0 pre-release snap version.
2002-01-27 13:02:31 +00:00
obrien
cc46a9ac95
Use these malloc-like bits from libiberty now.
2002-01-27 12:45:01 +00:00
obrien
1ec5095d71
Merge rev 1.2 (teach `ld' how to access FreeBSD's ld ELF hints)
...
into Binutils 2.12.0_snap.
2002-01-27 12:24:18 +00:00
obrien
9065e980a4
Bring the binutils_2_12_cvs_20020127 version of this to the HEAD branch.
2002-01-27 12:23:29 +00:00
obrien
6f96e0a473
Use the stock 2.12.0_snap version of this.
2002-01-27 12:18:32 +00:00
obrien
00f4a20efb
Merge rev 1.2 (FreeBSD a.out configuration support) into Binutils 2.12.0_snap.
2002-01-27 12:17:58 +00:00
obrien
8c0b5248c2
Bring the binutils_2_12_cvs_20020127 version of this to the HEAD branch.
2002-01-27 12:17:17 +00:00
obrien
a106f6ebaf
Bring the binutils_2_12_cvs_20020125 version of this to the HEAD branch.
2002-01-27 12:16:47 +00:00
obrien
75753c911d
Use the stock 2.12.0_snap version of this now.
2002-01-27 12:15:52 +00:00
obrien
1b0b9e44d6
Use the vendor's 2.12.0_snap vendor version of this file as in rev 1.5.
2002-01-27 12:12:53 +00:00
obrien
7ddb3a2a40
Use the vendor's 2.12.0_snap version of this file as in rev 1.4.
2002-01-27 12:09:38 +00:00
obrien
146ad69232
Commit the stock 2.12.0_snap version.
2002-01-27 12:08:47 +00:00
obrien
b26ac58c1b
Merge rev 1.6 (only define "ELF_DYNAMIC_INTERPRETER" if it isn't defined
...
elsewhere) into Binutils 2.12.0_snap.
2002-01-27 12:08:15 +00:00