]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoFix ufs_daddr_t/daddr_t type problems.
Poul-Henning Kamp [Fri, 17 May 2002 18:59:53 +0000 (18:59 +0000)]
Fix ufs_daddr_t/daddr_t type problems.

Sponsored by: DARPA & NAI labs.

22 years agoCall ufs_bmaparray() with right parameter type.
Poul-Henning Kamp [Fri, 17 May 2002 18:53:29 +0000 (18:53 +0000)]
Call ufs_bmaparray() with right parameter type.

Sponsored by: DARPA & NAI Labs.

22 years agoAdd my birthday to the list. Apparently, I share a birthday with dwhite.
Gordon Tetlow [Fri, 17 May 2002 17:49:32 +0000 (17:49 +0000)]
Add my birthday to the list. Apparently, I share a birthday with dwhite.

Reviewed by: jake
Approved by: jake

22 years agoFix a tiny bug in shlib support of ldd(1); if dlopen(lib, RTLD_TRACE)
Akinori MUSHA [Fri, 17 May 2002 17:06:56 +0000 (17:06 +0000)]
Fix a tiny bug in shlib support of ldd(1); if dlopen(lib, RTLD_TRACE)
returns, exit gracefully with 0.

This fixes the behavior you see when you specify libc.so.  It occurs
because ldd(1) itself is linked with libc.so.

$ ldd /usr/lib/libc.so
/usr/lib/libc.so:
ldd: /usr/lib/libc.so: (null)
/usr/lib/libc.so: exit status 1

Reviewed by: silence of audit@

22 years agoUpdate the EINVAL description again - it turns out that EINVAL
Peter Pentchev [Fri, 17 May 2002 16:39:21 +0000 (16:39 +0000)]
Update the EINVAL description again - it turns out that EINVAL
may be returned by Q_SETQUOTA as well as the originally listed
Q_GETQUOTA.

Noticed by: dd
Approved by: silence from dd
MFC after: 3 days

22 years agoMFC noted: cdcontrol(1) speed.
Bruce A. Mah [Fri, 17 May 2002 16:11:36 +0000 (16:11 +0000)]
MFC noted:  cdcontrol(1) speed.

Minor wording tweaks in ports infrastructure section.

22 years agoGet byte swapping primitives from sys/endian.h now that they are exported
Jake Burkholder [Fri, 17 May 2002 15:46:08 +0000 (15:46 +0000)]
Get byte swapping primitives from sys/endian.h now that they are exported
to userland.  This makes elf2aout work as a cross tool.

22 years agoTemporarily change our umask to 066 so that the potential creation
Brian Somers [Fri, 17 May 2002 14:05:08 +0000 (14:05 +0000)]
Temporarily change our umask to 066 so that the potential creation
of wtmp.0 is done as mode 600.

This ensures that tight permissions set in /etc/newsyslog.conf for
wtmp logging aren't ``betrayed''.

Suggested by: lumpy <lumpy@the.whole.net>
MFC after: 3 days

22 years agoChange ``dmesg -a'' to ``dmesg''.
Brian Somers [Fri, 17 May 2002 13:38:36 +0000 (13:38 +0000)]
Change ``dmesg -a'' to ``dmesg''.

The change was introduced in src/etc/security 1.53 almost a year ago
in an attempt to see ipfw deny message logs.

However, ipfw deny/reject logs have been displayed since version 1.13
of the same file as a separate ``job'' and have since moved to
src/etc/periodic/security/500.ipfwdenied.

MFC after: 3 days

22 years agoRegenerate with new output grouping in uuencode -m.
Juli Mallett [Fri, 17 May 2002 12:27:31 +0000 (12:27 +0000)]
Regenerate with new output grouping in uuencode -m.

22 years agoGroup the output chunks differently, to try to match BSD/OS output. Switch
Juli Mallett [Fri, 17 May 2002 12:27:02 +0000 (12:27 +0000)]
Group the output chunks differently, to try to match BSD/OS output.  Switch
to using arithmatic to determine buffer sizes to encode into.

Diane Bruce pointed out to me that BSD/OS did MIME too, so I want to match
their output, too, since my decision of 8 output groups was wholly arbitrary.

22 years agoOptimize prev. commit code a bit
Andrey A. Chernov [Fri, 17 May 2002 12:24:19 +0000 (12:24 +0000)]
Optimize prev. commit code a bit

22 years agoTrailing slash fixes.
Andrey A. Chernov [Fri, 17 May 2002 11:52:48 +0000 (11:52 +0000)]
Trailing slash fixes.

Fix the case:
        cp file nonexistent/
which create nonextstent as file while trailing slash clearly indicates
that nonexistent must be a directory.
Also fix the case:
cp file1 file2/
which should produce error.

22 years agoMove _PATH_WALL from dump and shutdown's local pathnames.h to paths.h.
Juli Mallett [Fri, 17 May 2002 11:47:12 +0000 (11:47 +0000)]
Move _PATH_WALL from dump and shutdown's local pathnames.h to paths.h.

22 years agoRemove local definition of _PATH_CP, and use <paths.h>, _PATH_CP is in the
Juli Mallett [Fri, 17 May 2002 11:38:48 +0000 (11:38 +0000)]
Remove local definition of _PATH_CP, and use <paths.h>, _PATH_CP is in the
CURRENT <paths.h>.

22 years agoTighten up temporary file permissions and move them to ${TMPDIR:-/tmp}
Brian Somers [Fri, 17 May 2002 11:34:12 +0000 (11:34 +0000)]
Tighten up temporary file permissions and move them to ${TMPDIR:-/tmp}

Problem reported by: lumpy <lumpy@the.whole.net>
MFC after: 3 days

22 years agoReturn 3 unless $daily_status_security_enable != YES.
Brian Somers [Fri, 17 May 2002 11:31:45 +0000 (11:31 +0000)]
Return 3 unless $daily_status_security_enable != YES.
Returning $? masks security output when ``periodic security'' is successful !

MFC after: 3 days

22 years agoRevert part of the previous revision. Changing exit() to return() in main()
Juli Mallett [Fri, 17 May 2002 11:16:49 +0000 (11:16 +0000)]
Revert part of the previous revision.  Changing exit() to return() in main()
is wrong, even though our C compiler doesn't understand that exit() eats
control of the program, and as such can sometimes complain that main() reaches
the bottom of its body without an explicit return().

Aside from that, the functional usefulness of changing it is effectively nil,
so back it out.

Submitted by: mike

22 years agoMFS: Extend a buffer size so that packages with particularily deep dependency
Brian Somers [Fri, 17 May 2002 09:46:46 +0000 (09:46 +0000)]
MFS: Extend a buffer size so that packages with particularily deep dependency
     lists install properly.

22 years agoMove LIB1ASMFUNCS from the SYMS variable and explicitly add it to OBJS
Peter Wemm [Fri, 17 May 2002 08:59:13 +0000 (08:59 +0000)]
Move LIB1ASMFUNCS from the SYMS variable and explicitly add it to OBJS
later.  Otherwise make will try and build the supposedly assembler .o
files from libgcc2.c - which does not work too well (the .o's have no
content)

Reviewed by: obrien

22 years agoMake the output tidier when multiple integer formats are requested by
Tim J. Robbins [Fri, 17 May 2002 08:54:32 +0000 (08:54 +0000)]
Make the output tidier when multiple integer formats are requested by
attempting to line up values into columns.

Obtained from: NetBSD (idea)

22 years agoSimplify prerun() in the case where there are no arguments. Can't do -I or -J
Juli Mallett [Fri, 17 May 2002 07:55:24 +0000 (07:55 +0000)]
Simplify prerun() in the case where there are no arguments.  Can't do -I or -J
substitution if `utility' is not specified and we're using the buildin echo;
It has no arguments for us to abuse.

22 years agoPut on peril-sensitive sunglasses and risk touching gcc related build glue
Peter Wemm [Fri, 17 May 2002 07:55:08 +0000 (07:55 +0000)]
Put on peril-sensitive sunglasses and risk touching gcc related build glue
again.  Try and deal with platforms that provide their own crtbegin/end asm
files (ia64 for example).  crtstuff.c does not actually work on ia64 since
libgcc.a doesn't have a few key support functions when built on ia64 so it
is compulsory to use crtbegin.asm and crtend.asm.

Reviewed by: obrien

22 years agoOverhaul hexdump's od syntax code to handle the -s -A -j -N -t options that
Tim J. Robbins [Fri, 17 May 2002 07:14:55 +0000 (07:14 +0000)]
Overhaul hexdump's od syntax code to handle the -s -A -j -N -t options that
SUSv3 requires and give od a proper manual page.

PR: 36783

22 years agoRemove some WIP bits that I didn't fully clean out before merging to HEAD.
David E. O'Brien [Fri, 17 May 2002 06:35:44 +0000 (06:35 +0000)]
Remove some WIP bits that I didn't fully clean out before merging to HEAD.

22 years agoDeclare variables that were extern'd in multiple places in hexdump.h.
Tim J. Robbins [Fri, 17 May 2002 06:32:00 +0000 (06:32 +0000)]
Declare variables that were extern'd in multiple places in hexdump.h.

PR: 36783

22 years agoAdd support for printing long doubles.
Tim J. Robbins [Fri, 17 May 2002 06:12:25 +0000 (06:12 +0000)]
Add support for printing long doubles.

PR: 36783

22 years ago- Apparently, the Alpha ABI mandates that arguments be passed sign-extended
John Baldwin [Fri, 17 May 2002 05:45:39 +0000 (05:45 +0000)]
- Apparently, the Alpha ABI mandates that arguments be passed sign-extended
  regardless of if they are signed or unsigned since it is easier to work
  with sign-extended values.  Thus, remove the disabled zapnot to
  zero-extend the sign-extended value we read from *p in atomic_cmpset_32()
  since the cmpval we are comparing against should already be
  sign-extended.
- To ensure that the compiler knows to sign-extend the upper 32 bits of
  cmpval rather than leaving garbage in there, cast the appropriately in
  the constraints section.

Help from: Richard Henderson <rth@redhat.com>

22 years agoPrint signed single-byte decimal integers correctly instead of implicitly
Tim J. Robbins [Fri, 17 May 2002 05:43:00 +0000 (05:43 +0000)]
Print signed single-byte decimal integers correctly instead of implicitly
converting them to unsigned bytes.

PR: 36783

22 years agoBack out revision 1.30 change.
Ruslan Ermilov [Fri, 17 May 2002 05:41:47 +0000 (05:41 +0000)]
Back out revision 1.30 change.

cc1plus can apparently be built if you happen to have
/usr/bin/gperf, or set CXX to point to a C++ compiler
that can build gperf(1) in the bootstrap-tools stage
of buildworld.

22 years agoStop this program's abuse of malloc(3). Its return value doesn't need these
Juli Mallett [Fri, 17 May 2002 05:27:52 +0000 (05:27 +0000)]
Stop this program's abuse of malloc(3).  Its return value doesn't need these
ugly explicit casts, and its argument doesn't need explicitly cast to u_int,
especially if sizeof() is being used.

22 years agoUn-deprecate od(1): rename the `deprecated' variable to `odmode', remove the
Tim J. Robbins [Fri, 17 May 2002 05:20:30 +0000 (05:20 +0000)]
Un-deprecate od(1): rename the `deprecated' variable to `odmode', remove the
deprecation warning from the utility and manual page. Since this utility
is required by POSIX, it's not likely to be removed any time soon.

This is leading up to the addition of the P1003.1-2001 -s -A -j -N -t options.

PR: 36783

22 years ago_C_LABEL -> CNAME
Benno Rice [Fri, 17 May 2002 05:11:13 +0000 (05:11 +0000)]
_C_LABEL -> CNAME

Forgotten by: benno

22 years agoClean up malloc(3)'s argument. Remove casts which do nothing when we're
Juli Mallett [Fri, 17 May 2002 05:11:07 +0000 (05:11 +0000)]
Clean up malloc(3)'s argument.  Remove casts which do nothing when we're
using sizeof() anyway.  Use slightly more consistent (per-file) error
reporting for malloc(3) returning NULL.  If "malloc failed" was being printed,
don't use err(3).  If a NULL format is being used, use err(3).  In one case
errx(3) was being used with strerror(3), so just use err(3).

22 years agoPost rev 1.39, the PowerPC specific additions to OBJS was getting lost.
David E. O'Brien [Fri, 17 May 2002 04:18:33 +0000 (04:18 +0000)]
Post rev 1.39, the PowerPC specific additions to OBJS was getting lost.

22 years agoUpdate to Binutils 2.12.0 and stick to the native emulation for now.
David E. O'Brien [Fri, 17 May 2002 03:43:47 +0000 (03:43 +0000)]
Update to Binutils 2.12.0 and stick to the native emulation for now.
This lets us get on the with the task at hand -- porting FreeBSD.
We can get fancy later on.

22 years agoUpdate to Binutils 2.12.0 release.
David E. O'Brien [Fri, 17 May 2002 03:43:09 +0000 (03:43 +0000)]
Update to Binutils 2.12.0 release.

22 years agoBump __FreeBSD_version to note that Perl is not in /usr/src any more.
David E. O'Brien [Fri, 17 May 2002 03:13:08 +0000 (03:13 +0000)]
Bump __FreeBSD_version to note that Perl is not in /usr/src any more.

22 years agoUpdate to Binutils 2.12.0 and stick to the native emulation for now.
David E. O'Brien [Fri, 17 May 2002 03:10:33 +0000 (03:10 +0000)]
Update to Binutils 2.12.0 and stick to the native emulation for now.
This lets us get on the with the task at hand -- porting FreeBSD.
We can get fancy later on.

22 years agobsd.lib.mk now understands what to do with .asm files.
David E. O'Brien [Fri, 17 May 2002 03:08:15 +0000 (03:08 +0000)]
bsd.lib.mk now understands what to do with .asm files.
So we can refer to these files by their real name vs. playing tricks
renaming them during the build.

22 years agoGCC 3.1 on PowerPC also has the crtsavres C Run Time file.
David E. O'Brien [Fri, 17 May 2002 03:04:47 +0000 (03:04 +0000)]
GCC 3.1 on PowerPC also has the crtsavres C Run Time file.

22 years agoDo not cut `docs' out of the build with NO_CXX.
David E. O'Brien [Fri, 17 May 2002 03:00:33 +0000 (03:00 +0000)]
Do not cut `docs' out of the build with NO_CXX.
There are no longer GNU C++ specific info files, and it was a bug with Gcc
2.95 that NO_CXX would cause the C and CPP info files to not be installed.

22 years agoRemove spurious casts in malloc(3)'s argument.
Juli Mallett [Fri, 17 May 2002 02:28:46 +0000 (02:28 +0000)]
Remove spurious casts in malloc(3)'s argument.

Use `return' instead of `exit' at the bottom of main().

22 years agoFlesh this out, based on the NetBSD version.
Benno Rice [Fri, 17 May 2002 01:58:55 +0000 (01:58 +0000)]
Flesh this out, based on the NetBSD version.

Reviewed by: obrien

22 years agoAdd a Standards section, and note that compress(1) and uncompress(1) now
Tim J. Robbins [Fri, 17 May 2002 01:54:17 +0000 (01:54 +0000)]
Add a Standards section, and note that compress(1) and uncompress(1) now
conform to P1003.1-2001.

22 years ago- Rename the _C_LABEL macro to CNAME.
Benno Rice [Fri, 17 May 2002 01:44:55 +0000 (01:44 +0000)]
- Rename the _C_LABEL macro to CNAME.
- Rename the _ASM_LABEL macro to ASMNAME.
- Add the HIDENAME macro which is used in libc's syscall stuff.

22 years agoAs required by SUSv3, a file argument of "-" causes standard input
Tim J. Robbins [Fri, 17 May 2002 01:42:43 +0000 (01:42 +0000)]
As required by SUSv3, a file argument of "-" causes standard input
to be compressed/decompressed to standard output.

22 years agoFix commenting around NetBSD version string.
Benno Rice [Fri, 17 May 2002 01:41:01 +0000 (01:41 +0000)]
Fix commenting around NetBSD version string.

22 years agoCompression ratio statistics should be written to stderr instead of stdout.
Tim J. Robbins [Fri, 17 May 2002 01:25:51 +0000 (01:25 +0000)]
Compression ratio statistics should be written to stderr instead of stdout.

22 years agoUse exit status 2 to indicate that the file was not compressed because
Tim J. Robbins [Fri, 17 May 2002 00:58:07 +0000 (00:58 +0000)]
Use exit status 2 to indicate that the file was not compressed because
its size would not be reduced (SUSv3).

22 years agoPut back <string.h>
Brian Somers [Fri, 17 May 2002 00:44:54 +0000 (00:44 +0000)]
Put back <string.h>

22 years ago- Further replacing of UM_* macros with the appropriate function call. I
Andrew R. Reiter [Fri, 17 May 2002 00:30:06 +0000 (00:30 +0000)]
- Further replacing of UM_* macros with the appropriate function call.  I
  am fairly certain that this should do it and that I may now remove the
  UM_ macros from port.h.  I will, however, wait a few days to ensure
  that these can be safely removed.

22 years ago - Replace UM_* macros by replacing them with the appropriate function
Andrew R. Reiter [Fri, 17 May 2002 00:20:40 +0000 (00:20 +0000)]
 - Replace UM_* macros by replacing them with the appropriate function
   call.  These changes are similar to the ones made to atmarpd and scsp.

22 years ago - Convert a bunch of macros to the actual function they're calling. These
Andrew R. Reiter [Thu, 16 May 2002 23:57:37 +0000 (23:57 +0000)]
  - Convert a bunch of macros to the actual function they're calling.  These
    include:

          UM_ALLOC        -> calloc, malloc
          UM_FREE         -> free
          UM_COPY         -> bcopy
          UM_ZERO         -> bzero

    This is the first step towards removing these macros.

22 years agoProcess and user ID arguments must be treated as decimal integers,
Tim J. Robbins [Thu, 16 May 2002 23:55:35 +0000 (23:55 +0000)]
Process and user ID arguments must be treated as decimal integers,
not octal or hex. This is the way it was before revision 1.10.

PR: 36950
Submitted by: Peter Avalos <pavalos@theshell.com>

22 years agoAccept decimal user IDs with -u option as well as usernames.
Tim J. Robbins [Thu, 16 May 2002 23:44:11 +0000 (23:44 +0000)]
Accept decimal user IDs with -u option as well as usernames.

PR: 36950

22 years agoDiagnostic messages belong on stderr, not stdout. SUSv3 specifies that
Tim J. Robbins [Thu, 16 May 2002 23:30:38 +0000 (23:30 +0000)]
Diagnostic messages belong on stderr, not stdout. SUSv3 specifies that
renice may not use stdout at all.

22 years ago- Convert a bunch of macros to the actual function they're calling. These
Andrew R. Reiter [Thu, 16 May 2002 23:28:40 +0000 (23:28 +0000)]
- Convert a bunch of macros to the actual function they're calling.  These
  include:

UM_ALLOC  -> calloc, malloc
UM_FREE -> free
UM_COPY -> bcopy
UM_ZERO -> bzero

  This is the first step towards removing these macros.

22 years agoRemove cross reference to pkg_update(1).
Eric Melville [Thu, 16 May 2002 22:46:53 +0000 (22:46 +0000)]
Remove cross reference to pkg_update(1).

Submitted by: dd

22 years agoSeparate "seperate" from kernel source.
Eric Melville [Thu, 16 May 2002 22:43:20 +0000 (22:43 +0000)]
Separate "seperate" from kernel source.

22 years agoBanish "priviledged" from kernel source.
Eric Melville [Thu, 16 May 2002 22:41:48 +0000 (22:41 +0000)]
Banish "priviledged" from kernel source.

22 years agoOOPS! rev 1.16 accidently changed the default outfile from stderr to
Peter Wemm [Thu, 16 May 2002 21:58:57 +0000 (21:58 +0000)]
OOPS!  rev 1.16 accidently changed the default outfile from stderr to
stdout.  Unfortunately, DES mfc'ed this change in 1.15.2.1 (this
part probably should not have been) so it is broken there too.
truss is documented to use stderr, and other implementations use stderr.

Submitted by: Arne Dag Fidjestøl <adf@idi.ntnu.no>

22 years agoMore s/file system/filesystem/g
Tom Rhodes [Thu, 16 May 2002 21:28:32 +0000 (21:28 +0000)]
More s/file system/filesystem/g

22 years agoThe ufs/ffs files are no longer required by ext2fs.
Ian Dowse [Thu, 16 May 2002 20:54:44 +0000 (20:54 +0000)]
The ufs/ffs files are no longer required by ext2fs.

22 years agoGive ext2fs its own static "dirchk" variable instead of using ufs's
Ian Dowse [Thu, 16 May 2002 20:53:04 +0000 (20:53 +0000)]
Give ext2fs its own static "dirchk" variable instead of using ufs's
variable. Make this accessible as the sysctl vfs.e2fs.dirchk.

22 years agoRemove register keyword.
Ian Dowse [Thu, 16 May 2002 19:43:28 +0000 (19:43 +0000)]
Remove register keyword.

22 years agos/file system/filesystem/g
Tom Rhodes [Thu, 16 May 2002 19:41:01 +0000 (19:41 +0000)]
s/file system/filesystem/g

22 years agoIn VOP_LOOKUP, don't assume that the final pathname component
Maxime Henrion [Thu, 16 May 2002 19:22:39 +0000 (19:22 +0000)]
In VOP_LOOKUP, don't assume that the final pathname component
will be in the same filesystem than the one where the current
component is.

Approved by: scottl

22 years agoComplete the separation of ext2fs from ufs by copying the remaining
Ian Dowse [Thu, 16 May 2002 19:08:03 +0000 (19:08 +0000)]
Complete the separation of ext2fs from ufs by copying the remaining
shared code and converting all ufs references. Originally it may
have made sense to share common features between the two filesystems,
but recently it has only caused problems, the UFS2 work being the
final straw.

All UFS_* indirect calls are now direct calls to ext2_* functions,
and ext2fs-specific mount and inode structures have been introduced.

22 years agoReplace the perl script version of this with a sh(1) script.
Mark Murray [Thu, 16 May 2002 18:51:57 +0000 (18:51 +0000)]
Replace the perl script version of this with a sh(1) script.

Submitted by: Riccardo "VIC" Torrini <riccardo@torrini.org>

22 years agoo Fix vfs_copyopt(), the first argument to bcopy() is the source,
Maxime Henrion [Thu, 16 May 2002 17:09:41 +0000 (17:09 +0000)]
o Fix vfs_copyopt(), the first argument to bcopy() is the source,
  not the destination.
o Remove some code from vfs_getopt() which was making the interface
  more complicated to use for a very slight gain.

22 years agoCatch up on ata(4)-supported SiS chipsets, from ata-pci.c rev. 1.41.
Bruce A. Mah [Thu, 16 May 2002 16:47:00 +0000 (16:47 +0000)]
Catch up on ata(4)-supported SiS chipsets, from ata-pci.c rev. 1.41.

We still need to do a more general catchup for ata(4) chipsets.

22 years agoRemove reference to dead file (style.perl.7).
Andrew Gallatin [Thu, 16 May 2002 16:21:39 +0000 (16:21 +0000)]
Remove reference to dead file (style.perl.7).

Pointy hat to: joe

22 years agoMinor rewording of an item.
Bruce A. Mah [Thu, 16 May 2002 16:18:42 +0000 (16:18 +0000)]
Minor rewording of an item.

22 years agoDon't install scriptdump which is written in Perl. This is
Hajimu UMEMOTO [Thu, 16 May 2002 15:44:08 +0000 (15:44 +0000)]
Don't install scriptdump which is written in Perl.  This is
corresponding to removal of Perl from base system.

22 years agoMD_EXEC_PREFIX doesn't work for the cross-arch compiler.
Ruslan Ermilov [Thu, 16 May 2002 15:22:58 +0000 (15:22 +0000)]
MD_EXEC_PREFIX doesn't work for the cross-arch compiler.
The change also makes the `cc -print-search-dirs' output
sane (the pre-3.1 way) in the non-cross case.

Draft reviewed by: obrien

22 years agoWhitespace fixes, no content changes.
Bruce A. Mah [Thu, 16 May 2002 15:18:25 +0000 (15:18 +0000)]
Whitespace fixes, no content changes.

22 years agoMake it possible to build a cross compiler for alpha,
Ruslan Ermilov [Thu, 16 May 2002 15:18:13 +0000 (15:18 +0000)]
Make it possible to build a cross compiler for alpha,
ia64 and sparc64 on systems that do not have atoll(3).
The "cross" here doesn't necessarily mean cross-arch.

22 years agoAdd Blue Concentric Cirlce CF Wireless LAN card to wi(4)-supported list.
Bruce A. Mah [Thu, 16 May 2002 15:16:48 +0000 (15:16 +0000)]
Add Blue Concentric Cirlce CF Wireless LAN card to wi(4)-supported list.

22 years agoAdd some OpenBSD includes
Brian Somers [Thu, 16 May 2002 14:47:19 +0000 (14:47 +0000)]
Add some OpenBSD includes

22 years agoFix a mis-placed #else/#endif
Brian Somers [Thu, 16 May 2002 14:28:32 +0000 (14:28 +0000)]
Fix a mis-placed #else/#endif

22 years agoHandle MS-CHAPv2 authentication correctly via the RADIUS server (if it's
Brian Somers [Thu, 16 May 2002 13:34:20 +0000 (13:34 +0000)]
Handle MS-CHAPv2 authentication correctly via the RADIUS server (if it's
configured).
Handle internal failures in radius_Authenticate() correctly.
Bump the ppp version number.

This doesn't yet work with MPPE.  More will follow.

Sponsored by: Mozoon

22 years agoThe sysctl has changed from 'kern.ps_showallprocs' to
Josef Karthauser [Thu, 16 May 2002 11:51:05 +0000 (11:51 +0000)]
The sysctl has changed from 'kern.ps_showallprocs' to
'security.bsd.see_other_uids'.

22 years agoNo need to have a perl style if we've not got perl.
Josef Karthauser [Thu, 16 May 2002 11:48:36 +0000 (11:48 +0000)]
No need to have a perl style if we've not got perl.

22 years agoCatch up with BSD.usr.dist,v 1.259.
Ruslan Ermilov [Thu, 16 May 2002 11:40:54 +0000 (11:40 +0000)]
Catch up with BSD.usr.dist,v 1.259.

22 years agoRemoved the vestiges of NO_?PERL and ENABLE_SUIDPERL.
Ruslan Ermilov [Thu, 16 May 2002 11:33:11 +0000 (11:33 +0000)]
Removed the vestiges of NO_?PERL and ENABLE_SUIDPERL.

Spotted by: grep(1)

22 years agoRemove perl hooks.
Mark Murray [Thu, 16 May 2002 11:27:33 +0000 (11:27 +0000)]
Remove perl hooks.

Pointed out by: des

22 years agoRename struct scr_size into struct _scr_size and struct scrmap into
Maxim Sobolev [Thu, 16 May 2002 10:57:10 +0000 (10:57 +0000)]
Rename struct scr_size into struct _scr_size and struct scrmap into
struct _scrmap, so that it doesn't break C++ programs (name of element of
the structure is the same as the name of the scructure itself).

MFC after: 5 days

22 years agoPerl is no longer in base. Long live the port!
Mark Murray [Thu, 16 May 2002 10:09:28 +0000 (10:09 +0000)]
Perl is no longer in base. Long live the port!

22 years agoRemove the perl build. Farewell, old friend.
Mark Murray [Thu, 16 May 2002 09:57:11 +0000 (09:57 +0000)]
Remove the perl build. Farewell, old friend.

22 years agoNo need to build perl dirs anymore.
Mark Murray [Thu, 16 May 2002 09:29:40 +0000 (09:29 +0000)]
No need to build perl dirs anymore.

22 years agoDon't build perl.
Mark Murray [Thu, 16 May 2002 08:59:52 +0000 (08:59 +0000)]
Don't build perl.

22 years agoRemove the perl bits from the build.
Mark Murray [Thu, 16 May 2002 08:55:59 +0000 (08:55 +0000)]
Remove the perl bits from the build.

22 years agoRemove references to perl, and temporarily remove the running of a perl
Mark Murray [Thu, 16 May 2002 08:32:21 +0000 (08:32 +0000)]
Remove references to perl, and temporarily remove the running of a perl
script that will be rewritten.

22 years agoMF4: sync with RELENG_4 version as much as possible.
Ruslan Ermilov [Thu, 16 May 2002 08:06:07 +0000 (08:06 +0000)]
MF4: sync with RELENG_4 version as much as possible.

22 years agoUse splnet() when we need to block timeouts rather than splimp() since
Warner Losh [Thu, 16 May 2002 06:32:37 +0000 (06:32 +0000)]
Use splnet() when we need to block timeouts rather than splimp() since
the former blocks software interrupts, while the latter blocks
hardware interrupts.

Avoid one place where I'm at splnet across a call to copyout.  Leave
one in place to give bde something to complain about :-).  Actaully,
I'll fix it in a subsequent commit.

Reviewed by: bde
spl conical hat to: imp

22 years agoBack out previous commit - I didn't realize that ifconfig(8) dealt
Jordan K. Hubbard [Thu, 16 May 2002 06:00:57 +0000 (06:00 +0000)]
Back out previous commit - I didn't realize that ifconfig(8) dealt
properly with 802.11 configuration now.

Noted by: jhb

22 years agoMore file system > filesystem
Tom Rhodes [Thu, 16 May 2002 05:21:58 +0000 (05:21 +0000)]
More file system > filesystem

22 years agoHandle the case where a negative offset in a regular expression match
Tim J. Robbins [Thu, 16 May 2002 05:04:26 +0000 (05:04 +0000)]
Handle the case where a negative offset in a regular expression match
is larger than the number of lines in the overflow file.

22 years agofile system > filesystem
Tom Rhodes [Thu, 16 May 2002 05:03:56 +0000 (05:03 +0000)]
file system > filesystem