]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
23 years agoInstall sstring.
David E. O'Brien [Sat, 24 Mar 2001 08:19:31 +0000 (08:19 +0000)]
Install sstring.

PR: 25927
Submitted by: Jeremy Norris <ishmael27@home.com>

23 years agoGarbage collect these ancient bits.
David E. O'Brien [Sat, 24 Mar 2001 08:15:22 +0000 (08:15 +0000)]
Garbage collect these ancient bits.

23 years agoAdd cvs tag
Doug Barton [Sat, 24 Mar 2001 07:20:36 +0000 (07:20 +0000)]
Add cvs  tag

23 years agoUse (..., "%s", foo) instead of (..., foo) to avoid a warning about a
John Baldwin [Sat, 24 Mar 2001 06:26:47 +0000 (06:26 +0000)]
Use (..., "%s", foo) instead of (..., foo) to avoid a warning about a
non-constant format string when calling kthread_create() to create an
ithread.

23 years ago- Define and use MAXCPU like the alpha and i386 instead of NCPUS.
John Baldwin [Sat, 24 Mar 2001 06:22:57 +0000 (06:22 +0000)]
- Define and use MAXCPU like the alpha and i386 instead of NCPUS.
- Sort the sys/mutex.h include in mp_machdep.c into a closer to correct
  location.

23 years agoStick a prototype for handleclock() in machine/clock.h and include it
John Baldwin [Sat, 24 Mar 2001 06:20:48 +0000 (06:20 +0000)]
Stick a prototype for handleclock() in machine/clock.h and include it
interrupt.c to quiet a warning.

23 years agoPreserve ssh directory across upgrades.
Jordan K. Hubbard [Sat, 24 Mar 2001 05:40:43 +0000 (05:40 +0000)]
Preserve ssh directory across upgrades.

Submitted by: Edwin Groothuis <edwin@mavetju.org>
PR: conf/25633

23 years agoThis is kind of a hack, but it should work. Currently, world is broken
Peter Wemm [Sat, 24 Mar 2001 04:40:49 +0000 (04:40 +0000)]
This is kind of a hack, but it should work.  Currently, world is broken
because libc/rpc/key_call.c references uname(), and ps/print.c also
defines uname(), and ps is linked statically.  This leads to a symbol
clash.  The userland uname(3) kinda sucked anyway as the hostname
etc was too short.  And since the libc rpc interface now uses
the utsname.nodename which gets truncated, I was tempted into doing
something about it.  Create a new userland uname function, called
__xuname() which takes an extra argument that allows you to change
the size of the fields.  uname() becomes a static inline function
in sys/utsname.h that passes the extra argument in.  struct utsname
has its field members expanded by default now in userland.
We still provide a 'uname' externally linkable function for things
that either think that they ``know'' the utsname format and assume
32 character strings and bypass the include file, or objects that
are linked against old libcs.  ie: just about every plausible
case that I can think of is covered.  Should we ever change the
default lengths again, a libc major bump should not be required
as the size is now passed to the function.

XXX the uname(2) in the kernel is for FreeBSD 1.1 binary compatability!
All the uname(3) functions that are exported to userland are actually
implemented in libc with sysctl.  uname(1) uses sysctl directly and
does not call uname(3).

PR: bin/4688

23 years agoJust use the proc lock to protect read accesses to p_pptr rather than the
John Baldwin [Sat, 24 Mar 2001 04:00:01 +0000 (04:00 +0000)]
Just use the proc lock to protect read accesses to p_pptr rather than the
more expensive proctree lock.

23 years agoProtect p_wmesg and p_wchan with sched_lock while checking for deadlocks
John Baldwin [Sat, 24 Mar 2001 03:57:44 +0000 (03:57 +0000)]
Protect p_wmesg and p_wchan with sched_lock while checking for deadlocks
with other byte range file locks.

23 years agoafterstep doesn't need an explicit xterm started for it either.
Jordan K. Hubbard [Sat, 24 Mar 2001 03:17:35 +0000 (03:17 +0000)]
afterstep doesn't need an explicit xterm started for it either.

23 years agoThis commit was generated by cvs2svn to compensate for changes in r74722,
David E. O'Brien [Sat, 24 Mar 2001 01:58:31 +0000 (01:58 +0000)]
This commit was generated by cvs2svn to compensate for changes in r74722,
which included commits to RCS files with non-trunk default branches.

23 years agoImport the setjump/longjump exception handling fixes from GCC 2.95.3.test3
David E. O'Brien [Sat, 24 Mar 2001 01:58:31 +0000 (01:58 +0000)]
Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3
that were removed from GCC 2.95.3.test4 and the subsequent release due
to problems on HP-UX.  However, they work just fine on all the BSD's.

W/o these patches the following program segmentation faults if compiled
with -O2 (but not -Os or -O or -O0):

#include <stdio.h>

class A {
public:
  A() { printf("c'tor A\n"); }
  ~A(){ printf("d'tor A\n"); }
};

class foo : public A {
public:
  foo()  { printf("C'tor foo\n"); throw 8; }
  ~foo() { printf("D'tor foo\n"); }
};

int main(){
  try { foo fii; }
  catch (int){ printf("catch ...\n"); }
  return 0;
}

23 years agos/dependant/dependent
Jordan K. Hubbard [Sat, 24 Mar 2001 01:26:51 +0000 (01:26 +0000)]
s/dependant/dependent

Submitted by: rwatson

23 years agorevert rev 1.3: restore MAN1 directive to unbreak world
Alfred Perlstein [Sat, 24 Mar 2001 01:17:51 +0000 (01:17 +0000)]
revert rev 1.3: restore MAN1 directive to unbreak world

23 years agoSlightly de-bogify the uname() declarations.
Peter Wemm [Sat, 24 Mar 2001 00:34:12 +0000 (00:34 +0000)]
Slightly de-bogify the uname() declarations.
1: there is no global 'struct utsname utsname' in the kernel.
2: the __P() stuff handles the __STDC__ stuff, so the extra ifdef is
   redundant.

23 years agoInstall /etc/primes.
Brian Feldman [Sat, 24 Mar 2001 00:33:05 +0000 (00:33 +0000)]
Install /etc/primes.

23 years agoNow that libfetch uses the high port range by default, add a -U option to
Dag-Erling Smørgrav [Sat, 24 Mar 2001 00:32:11 +0000 (00:32 +0000)]
Now that libfetch uses the high port range by default, add a -U option to
make it use the low (default) port range instead.

23 years agoUse high port range by default, and replace the 'h' option with an 'l' option
Dag-Erling Smørgrav [Sat, 24 Mar 2001 00:28:57 +0000 (00:28 +0000)]
Use high port range by default, and replace the 'h' option with an 'l' option
that forces the ftp code to use the low (default) port range instead.

23 years agoAdd /etc/primes for OpenSSH SSH2 DH exchange.
Brian Feldman [Sat, 24 Mar 2001 00:28:43 +0000 (00:28 +0000)]
Add /etc/primes for OpenSSH SSH2 DH exchange.

Submitted by: Chris Wasser <cwasser@v-wave.com>
Obtained from: OpenBSD

23 years agoFix rcsid/$FreeBSD$.
David E. O'Brien [Sat, 24 Mar 2001 00:22:13 +0000 (00:22 +0000)]
Fix rcsid/$FreeBSD$.
Reduce diff from what I think is the original sources.

23 years agoadd support for opti924 and opti930 chips
Cameron Grant [Sat, 24 Mar 2001 00:22:01 +0000 (00:22 +0000)]
add support for opti924 and opti930 chips

both should work in non-pnp mode, the 924 should also work in its rather
braindead pnp mode- it will adopt port 0x530 unless given hints due to it
starting up in soundblaster mode and thus not requesting a valid mss port
address.

Submitted by: George Reid <greid@ukug.uk.freebsd.org>

23 years agofix Alpha support
Alfred Perlstein [Sat, 24 Mar 2001 00:07:06 +0000 (00:07 +0000)]
fix Alpha support

23 years agoLets spell the guys name correctly: s/Avogardo/Avogadro/
Wilko Bulte [Fri, 23 Mar 2001 22:42:16 +0000 (22:42 +0000)]
Lets spell the guys name correctly: s/Avogardo/Avogadro/

23 years agoThe early compat dists only make sense on the i386
Jordan K. Hubbard [Fri, 23 Mar 2001 21:43:47 +0000 (21:43 +0000)]
The early compat dists only make sense on the i386

23 years agoCheck that background fsck operation is being done on a ufs filesystem.
Kirk McKusick [Fri, 23 Mar 2001 20:58:25 +0000 (20:58 +0000)]
Check that background fsck operation is being done on a ufs filesystem.

Obtained from: Robert Watson <rwatson@FreeBSD.org>

23 years agoFix the problem with some drives not reporting back when the
Søren Schmidt [Fri, 23 Mar 2001 20:55:28 +0000 (20:55 +0000)]
Fix the problem with some drives not reporting back when the
are busy blanking and erasing CD-RW media.
This fixes burncd's premature returns from blanking/erasing
that caused trouble.

23 years ago(MFC candidate, see below).
Joerg Wunsch [Fri, 23 Mar 2001 19:51:12 +0000 (19:51 +0000)]
(MFC candidate, see below).

When we get an Open event in stopped state, experience shows that this
is usually means we've somehow missed a previous Down event.  This has
occasionally bitten people for the IPCP layer with ISDN, apparently a
previously aborted IPCP negotiation must have caused this.  As a
bandaid, we quickly pretent a Down event by advancing to starting
state; this effectively implements the `restart' option mentioned in
RFC 1663.

While i'm not yet fully convinced this is the best thing to do (and is
fully compliant with RFC 1661), i've seen a number of reports here on
the German mailing lists where people have been bitten by the previous
behaviour which usually causes quickly looping ISDN reconnects (thus
loss of money...), and where just this patch fixes the problem.

For this, i'd even like to see it MFC'd if possible.

Submitted by: Helmut Kreft <kreft@zeus.ai-lab.fh-furtwangen.de>

23 years agodisable SRA
Assar Westerlund [Fri, 23 Mar 2001 19:38:21 +0000 (19:38 +0000)]
disable SRA
this impacts negatively to POLA since once autologin is enabled,
telnet will prompt for a password using getpass() and thus not allow
the usual signal characters or C-]

23 years agofix linux_times() to take into account linux's value of CLK_TCK on the alpha.
Andrew Gallatin [Fri, 23 Mar 2001 19:22:21 +0000 (19:22 +0000)]
fix linux_times() to take into account linux's value of CLK_TCK on the alpha.
Previously, results were off by a factor of 10

Tested by: Yoriaki FUJIMORI <fujimori@grafin.fujimori.cache.waseda.ac.jp>

23 years agoIPv4 address is not unsigned int. This change introduces in_addr_t.
Hajimu UMEMOTO [Fri, 23 Mar 2001 18:59:31 +0000 (18:59 +0000)]
IPv4 address is not unsigned int.  This change introduces in_addr_t.

PR: 9982
Adviced by: des
Reviewed by: -alpha and -net (no objection)
Obtained from: OpenBSD

23 years ago- Add which(1)-like functionality into pkg_info;
Maxim Sobolev [Fri, 23 Mar 2001 18:45:24 +0000 (18:45 +0000)]
- Add which(1)-like functionality into pkg_info;
- fix a harmless bug in match_installed() function introduced in my last
  commit;
- uniformely reorder includes across files.

Submitted by: Garrett Rooney <rooneg@electricjellyfish.net>
Not objected by: jkh, -ports

23 years agoA few fixes..
Archie Cobbs [Fri, 23 Mar 2001 17:46:32 +0000 (17:46 +0000)]
A few fixes..

    1 Make promiscuous mode work
    2 A few header additions
    3 Allow device config before IFF_UP

These were (respectively)...

Submitted by: Allan Saddi <asaddi@philosophysw.com>
Submitted by: Dave Cornejo <dave@dogwood.com>
Submitted by: Doug Ambrisko <ambrisko@ambrisko.com>
Tested by: David Wolfskill <dhw@whistle.com>

23 years agoAdd Comtrol Rocketport cards to hardware list, for consistency with
Bruce A. Mah [Fri, 23 Mar 2001 16:46:09 +0000 (16:46 +0000)]
Add Comtrol Rocketport cards to hardware list, for consistency with
i386/RELNOTES.TXT.

Submitted by: Chris Williams <psion@geekspace.com>

23 years ago* power up the external amplifier
Cameron Grant [Fri, 23 Mar 2001 16:39:01 +0000 (16:39 +0000)]
* power up the external amplifier

* after chip reset, reapply power settings

23 years agochange callrpc() from taking "char *" args, I'm quite sure they really meant
Alfred Perlstein [Fri, 23 Mar 2001 16:14:49 +0000 (16:14 +0000)]
change callrpc() from taking "char *" args, I'm quite sure they really meant
to use "void *".

remove a duplicate prototype for callrpc() from libexec/ypxfr/ypxfr_extern.h

23 years ago- DECLARE_MODULE needs SYSINIT -> include sys/kernel.h
Alexander Langer [Fri, 23 Mar 2001 14:05:05 +0000 (14:05 +0000)]
- DECLARE_MODULE needs SYSINIT -> include sys/kernel.h
- modeventhand_t declares a pointer to a function, so it can't be
  used as a forward declaration (d'oh!)

Submitted by: Harti Brandt <brandt@fokus.gmd.de>

23 years agomdoc(7) police: fix markup.
Ruslan Ermilov [Fri, 23 Mar 2001 14:01:28 +0000 (14:01 +0000)]
mdoc(7) police: fix markup.

23 years agoFixed style bugs (use normal formatting for assignment, and don't override
Bruce Evans [Fri, 23 Mar 2001 13:47:46 +0000 (13:47 +0000)]
Fixed style bugs (use normal formatting for assignment, and don't override
the correct default for MAN1).

23 years agoQuote PPP_CONFDIR in CFLAGS
Brian Somers [Fri, 23 Mar 2001 13:28:28 +0000 (13:28 +0000)]
Quote PPP_CONFDIR in CFLAGS

23 years agoFix -I getopt form
Andrey A. Chernov [Fri, 23 Mar 2001 12:39:29 +0000 (12:39 +0000)]
Fix -I getopt form

PR: 26010
Submitted by: Peter Jeremy <jeremyp@gsmx07.alcatel.com.au>

23 years agoreplace calls to non-existant bail() subroutine with calls to
Alfred Perlstein [Fri, 23 Mar 2001 11:48:50 +0000 (11:48 +0000)]
replace calls to non-existant bail() subroutine with calls to
the die() builtin function.

23 years agoChange _PATH_PPP to PPP_CONFDIR and allow it to be overridden at compile time
Brian Somers [Fri, 23 Mar 2001 11:43:22 +0000 (11:43 +0000)]
Change _PATH_PPP to PPP_CONFDIR and allow it to be overridden at compile time

23 years agoCorrect the acl_set_permset and acl_set_tag_type man pages
Chris D. Faulhaber [Fri, 23 Mar 2001 11:30:31 +0000 (11:30 +0000)]
Correct the acl_set_permset and acl_set_tag_type man pages
which somehow got mixed up with the acl_get_* man pages.

Submitted by: ru

23 years agoadded new directories to sync with XFree86-4.0.3.
FUJISHIMA Satsuki [Fri, 23 Mar 2001 11:18:06 +0000 (11:18 +0000)]
added new directories to sync with XFree86-4.0.3.

Approved by: asami

23 years agomdoc(7) police: fix markup.
Ruslan Ermilov [Fri, 23 Mar 2001 09:39:35 +0000 (09:39 +0000)]
mdoc(7) police: fix markup.

23 years agomdoc(7) police: fix markup, function prototype, and RETURN VALUES text.
Ruslan Ermilov [Fri, 23 Mar 2001 09:38:43 +0000 (09:38 +0000)]
mdoc(7) police: fix markup, function prototype, and RETURN VALUES text.

23 years agoMerged from sys/i386/isa/npx.c revision 1.93.
KATO Takenori [Fri, 23 Mar 2001 08:58:36 +0000 (08:58 +0000)]
Merged from sys/i386/isa/npx.c revision 1.93.

23 years agoMerged from sys/i386/i386/machdep.c revision 1.445.
KATO Takenori [Fri, 23 Mar 2001 08:57:22 +0000 (08:57 +0000)]
Merged from sys/i386/i386/machdep.c revision 1.445.

23 years agoMake wizard mode get out of raw mode first before going interactive with
Jordan K. Hubbard [Fri, 23 Mar 2001 08:26:43 +0000 (08:26 +0000)]
Make wizard mode get out of raw mode first before going interactive with
the user.

Submitted by: Cyrille Lefevre <clefevre@citeweb.net>
PR: bin/24061

23 years agomdoc(7) police: fix markup and some spelling.
Ruslan Ermilov [Fri, 23 Mar 2001 08:14:27 +0000 (08:14 +0000)]
mdoc(7) police: fix markup and some spelling.

23 years agoFix a bug with setting the soft updates option from a script.
Jordan K. Hubbard [Fri, 23 Mar 2001 08:06:19 +0000 (08:06 +0000)]
Fix a bug with setting the soft updates option from a script.

Eliminate an old warning brought about by insufficient foresight when creating
the Menu structure.  Have I ever mentioned that sysinstall really needs to
be rewritten?

23 years agoNow that I have a pair of CreditCard Netwave Adapter, tweak the eject
Warner Losh [Fri, 23 Mar 2001 08:00:04 +0000 (08:00 +0000)]
Now that I have a pair of CreditCard Netwave Adapter, tweak the eject
case slightly to not print unload when the upper layers print
a message as well.

23 years agoSwitch from lynx to "links" as the default doc browser.
Jordan K. Hubbard [Fri, 23 Mar 2001 07:53:45 +0000 (07:53 +0000)]
Switch from lynx to "links" as the default doc browser.

Submitted by: jim

23 years agoGet rid of setgid kmem for systat, and while being there, fix some bugs
Thomas Moestl [Fri, 23 Mar 2001 03:58:25 +0000 (03:58 +0000)]
Get rid of setgid kmem for systat, and while being there, fix some bugs
and compiler warnings.
The data for network statistics are still obtained via the kvm interface
if systat was started with the needed privileges, otherwise sysctls are
used. The reason for this is that with really many open sockets, the
sysctl method is probably slower, but it systat -netstat is probably not
really usable in either mode under these conditions.

Approved by: rwatson

23 years agoExport intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames and
Thomas Moestl [Fri, 23 Mar 2001 03:45:17 +0000 (03:45 +0000)]
Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames and
hw.intrcnt).

Approved by: rwatson

23 years agodevfs convertion used VINUMRMINOR incorrectly (passing args in
Alfred Perlstein [Thu, 22 Mar 2001 23:21:49 +0000 (23:21 +0000)]
devfs convertion used VINUMRMINOR incorrectly (passing args in
backwards order)

Submitted by: Bernd Walter <ticso@mail.cicely.de>

23 years agoAdd missing specification of the `-s' option to the usage line.
Ian Dowse [Thu, 22 Mar 2001 22:55:13 +0000 (22:55 +0000)]
Add missing specification of the `-s' option to the usage line.

PR: bin/26004
Submitted by: ushida@msa.biglobe.ne.jp
Reviewed by: rnordier

23 years agoAdd the following ACL editing functions:
Chris D. Faulhaber [Thu, 22 Mar 2001 22:31:01 +0000 (22:31 +0000)]
Add the following ACL editing functions:
  acl_add_perm, acl_clear_perms, acl_copy_entry, acl_create_entry,
  acl_delete_perm, acl_get_permset, acl_get_qualifier, acl_get_tag_type,
  acl_set_permset, acl_set_qualifier, acl_set_tag_type

This brings us within 4 functions of a full ACL editing library.

Reviewed by: rwatson

23 years agoRevert rev 1.7 which used "`console' rather than `ttyv0' so there will
David E. O'Brien [Thu, 22 Mar 2001 22:16:26 +0000 (22:16 +0000)]
Revert rev 1.7 which used "`console' rather than `ttyv0' so there will
always be a getty on the console reguardless of the type of console.
Instead always run a getty on ttyd0.

Reviewed by: gallatin

23 years agoAllow AAC_COMPAT_LINUX to be used when compiling aac support into the kernel.
Scott Long [Thu, 22 Mar 2001 21:34:18 +0000 (21:34 +0000)]
Allow AAC_COMPAT_LINUX to be used when compiling aac support into the kernel.
Requires that COMPAT_LINUX also be set.

23 years agoCreate afaN as a simlink to aacN. Add a comment about the aac device.
Scott Long [Thu, 22 Mar 2001 21:29:16 +0000 (21:29 +0000)]
Create afaN as a simlink to aacN.  Add a comment about the aac device.

23 years agoCreate /dev/afaN as a symlink to /dev/aacN. This allows the CLI tools from
Scott Long [Thu, 22 Mar 2001 21:04:22 +0000 (21:04 +0000)]
Create /dev/afaN as a symlink to /dev/aacN.  This allows the CLI tools from
Dell and HP to run.

Reviewed by: msmith

23 years agoRemove struct cmessage from sys/socket.h and reintroduce the private
Alfred Perlstein [Thu, 22 Mar 2001 20:43:13 +0000 (20:43 +0000)]
Remove struct cmessage from sys/socket.h and reintroduce the private
definitions.

Requested by: wollman

23 years agoforgot prototyle for __rpc_get_local_uid()
Alfred Perlstein [Thu, 22 Mar 2001 18:44:57 +0000 (18:44 +0000)]
forgot prototyle for __rpc_get_local_uid()

23 years agoUnbreak world by removing struct cmessage already define in sys/socket.h
Andrey A. Chernov [Thu, 22 Mar 2001 18:18:32 +0000 (18:18 +0000)]
Unbreak world by removing struct cmessage already define in sys/socket.h

23 years agoUpdate search URL:
Wolfram Schneider [Thu, 22 Mar 2001 17:58:20 +0000 (17:58 +0000)]
Update search URL:

http://www.FreeBSD.org/search.html ->  http://www.FreeBSD.org/search/

23 years agoTake setgid kmem away from nfsstat, it has not needed it for some time
Thomas Moestl [Thu, 22 Mar 2001 17:39:57 +0000 (17:39 +0000)]
Take setgid kmem away from nfsstat, it has not needed it for some time
now.

Approved by: rwatson

23 years agoRespect style(9), one must not include both <sys/types.h> and
Ollivier Robert [Thu, 22 Mar 2001 13:19:32 +0000 (13:19 +0000)]
Respect style(9), one must not include both <sys/types.h> and
<sys/param.h> (the latter includes the former).

Submitted by: bde

23 years agoRemove (non-protected) variable names from function prototypes.
Brian Somers [Thu, 22 Mar 2001 11:55:26 +0000 (11:55 +0000)]
Remove (non-protected) variable names from function prototypes.

23 years agoSince ctime compatibility restrictions removed, use more natural date formats
Andrey A. Chernov [Thu, 22 Mar 2001 11:39:11 +0000 (11:39 +0000)]
Since ctime compatibility restrictions removed, use more natural date formats

23 years agoAdd back the wd* entries. It turns out they're still used by the PC98.
Jordan K. Hubbard [Thu, 22 Mar 2001 10:39:03 +0000 (10:39 +0000)]
Add back the wd* entries.  It turns out they're still used by the PC98.

Noted by: nyan

23 years agoMove bindery authentication ncps to ncp_ncp.c file. ncp_login.c will stay
Boris Popov [Thu, 22 Mar 2001 10:38:16 +0000 (10:38 +0000)]
Move bindery authentication ncps to ncp_ncp.c file. ncp_login.c will stay
empty for a while.

23 years agoProperly set flags on the broken connection.
Boris Popov [Thu, 22 Mar 2001 10:29:39 +0000 (10:29 +0000)]
Properly set flags on the broken connection.

23 years agoEnhancement to 1.99 -> 1.100.
Ruslan Ermilov [Thu, 22 Mar 2001 09:54:25 +0000 (09:54 +0000)]
Enhancement to 1.99 -> 1.100.
Avoid EPERM from ln(1) in a different (proper) way.

23 years agoo Actually extract version of interface and store it along with the name.
Boris Popov [Thu, 22 Mar 2001 08:58:45 +0000 (08:58 +0000)]
o Actually extract version of interface and store it along with the name.

o Add new parameter to the modlist_lookup() function to perform lookups
  with strict version matching.

o Collapse duplicate code to function(s).

23 years agoSlightly reorganize code in the linker_load_dependancies() function to make
Boris Popov [Thu, 22 Mar 2001 07:55:33 +0000 (07:55 +0000)]
Slightly reorganize code in the linker_load_dependancies() function to make
codepath more straightforward.

23 years agoDon't create legacy wd* devices by default. Let the user do this if
Jordan K. Hubbard [Thu, 22 Mar 2001 07:30:02 +0000 (07:30 +0000)]
Don't create legacy wd* devices by default.  Let the user do this if
they so desire it.

Suggested by: rwatson

23 years agoRemove support for old way of handling module dependencies.
Boris Popov [Thu, 22 Mar 2001 07:14:42 +0000 (07:14 +0000)]
Remove support for old way of handling module dependencies.

Approved by: peter

23 years agoUse orthogonal www.FreeBSD.org syntax.
Jordan K. Hubbard [Thu, 22 Mar 2001 07:01:19 +0000 (07:01 +0000)]
Use orthogonal www.FreeBSD.org syntax.

Whined about by: rwatson

23 years agoAdd dependancy on libmchain module.
Boris Popov [Thu, 22 Mar 2001 06:51:53 +0000 (06:51 +0000)]
Add dependancy on libmchain module.

Spotted by: Andrzej Tobola <san@iem.pw.edu.pl>

23 years agoFirst step towards making loadable modules independent of having
Warner Losh [Thu, 22 Mar 2001 06:00:07 +0000 (06:00 +0000)]
First step towards making loadable modules independent of having
pccard in the kernel for those drivers with pccard attachments.  This
makes the compat layer a little larger by introducing some inlines,
but should almost make it possible to have independent attachments.
The pccard_match function are the only one left, which I will take
care of shortly.

23 years agoSync to last changes.
Warner Losh [Thu, 22 Mar 2001 05:52:42 +0000 (05:52 +0000)]
Sync to last changes.

23 years agoAdd zoom air 4000.
Warner Losh [Thu, 22 Mar 2001 05:51:58 +0000 (05:51 +0000)]
Add zoom air 4000.

23 years agoAxe a few __P() while I'm in the neighborhood.
Warner Losh [Thu, 22 Mar 2001 05:49:18 +0000 (05:49 +0000)]
Axe a few __P() while I'm in the neighborhood.

23 years agoStyle(9) changes:
Warner Losh [Thu, 22 Mar 2001 05:41:20 +0000 (05:41 +0000)]
Style(9) changes:
put parens around return (statements);
Use ANSI funcitons only.

23 years agoInclude docs with "default X dist" so XF86Config won't complain about it.
Jordan K. Hubbard [Thu, 22 Mar 2001 05:36:54 +0000 (05:36 +0000)]
Include docs with "default X dist" so XF86Config won't complain about it.

23 years agoDon't install Kerberos stuff if user has selected minimal or "user"
Jordan K. Hubbard [Thu, 22 Mar 2001 05:33:15 +0000 (05:33 +0000)]
Don't install Kerberos stuff if user has selected minimal or "user"
modes.

23 years agoHopefully fix some of the bugs in passing credentials over UNIX domai...
Alfred Perlstein [Thu, 22 Mar 2001 04:31:30 +0000 (04:31 +0000)]
Hopefully fix some of the bugs in passing credentials over UNIX                 domain sockets.

Make struct cmessage visible from socket.h (about 4 places were
defining it for themselves which wasn't good)

Make __rpc_get_local_uid() useable and give it prototype that's
visible.

Fix some issues with printing out usernames from rpcbind and keyserv.

23 years agoo Remove BINMODE=0550 -- no need to restrict execution rights as the
Robert Watson [Thu, 22 Mar 2001 04:27:46 +0000 (04:27 +0000)]
o Remove BINMODE=0550 -- no need to restrict execution rights as the
  authorization check is on /dev/{,k}mem.
o Update man page to reflect requirement that gid kmem privileges must
  be held, not root.  (submitted by: peter)

23 years agoo Strip BINMODE from Makefile. Installing watch with 0500 provides no
Robert Watson [Thu, 22 Mar 2001 04:10:51 +0000 (04:10 +0000)]
o Strip BINMODE from Makefile.  Installing watch with 0500 provides no
  added security benefit, as it doesn't provide extra privilege.
  Protection against inappropriate snooping is done by protecting
  /dev/snp* properly.

23 years agoo Slap some "_"'s in front of variable names relating to extattr functions,
Robert Watson [Thu, 22 Mar 2001 04:05:40 +0000 (04:05 +0000)]
o Slap some "_"'s in front of variable names relating to extattr functions,
  so as not to pollute application namespace.

Submitted by: bde

23 years agoadd/correct a bunch of codec ids
Cameron Grant [Thu, 22 Mar 2001 02:41:24 +0000 (02:41 +0000)]
add/correct a bunch of codec ids

Obtained from: linux, alsa, various datasheets

23 years agoNew release notes: OpenSSH resistance to traffic analysis, make(1)
Bruce A. Mah [Thu, 22 Mar 2001 02:40:50 +0000 (02:40 +0000)]
New release notes:  OpenSSH resistance to traffic analysis, make(1)
bugs fixed, fsck_ffs in background on mounted filesystems, TI-RPC,
portmap(8)->rpcbind(8), IPv6 support in NFS, lockd, rc(8) dependency
handling.

Synch up hardware devices with etc/defaults/pccard.conf 1.98.2.19
(yes, from RELENG_4).  This change needs to be propagated to RELNOTESng.

23 years ago- XF86.patch is no longer needed as it is all checked into the XFree86
John Baldwin [Thu, 22 Mar 2001 01:47:02 +0000 (01:47 +0000)]
- XF86.patch is no longer needed as it is all checked into the XFree86
  port conditional on the BUILD_XDIST variable.
- Define BUILD_XDIST=yes when compiling XFree86.

23 years agoProperly deal with one char weekdays
Andrey A. Chernov [Thu, 22 Mar 2001 00:38:46 +0000 (00:38 +0000)]
Properly deal with one char weekdays

23 years agoUppercase first month letter
Andrey A. Chernov [Thu, 22 Mar 2001 00:25:26 +0000 (00:25 +0000)]
Uppercase first month letter
Terminate weekday string

23 years agoThis adds /etc/netconfig to the list of files that get copied to
Alfred Perlstein [Wed, 21 Mar 2001 23:53:40 +0000 (23:53 +0000)]
This adds /etc/netconfig to the list of files that get copied to
/stand/etc on the mfsroot, and hence to /etc on the install target
disk for use during the install. It also links netconfig and services
into /etc on the mfsroot so that they are available to a fixit
shell.

Submitted by: iedowse

23 years agoypserv has intimate knowledge of the server transport handle which is
Bill Paul [Wed, 21 Mar 2001 23:47:18 +0000 (23:47 +0000)]
ypserv has intimate knowledge of the server transport handle which is
needed to make the asynchronous DNS lookup mechanism work. (It needs to
be able to get/set the transaction ID in the trasport handle so it can
deliver a delayed UDP response when a reply is received from a DNS
server.) With TI-TPC, the transport handle has changed slightly (what
used to be an int is now a size_t) so we need to account for this.

23 years agoAdd padding for some short names to make their length the same to not
Andrey A. Chernov [Wed, 21 Mar 2001 23:24:41 +0000 (23:24 +0000)]
Add padding for some short names to make their length the same to not
break colums