David Greenman
136b546adf
Disabled tagged commands for Hitachi Jura-C series with J8A8 firmware.
...
PR: 23536
Submitted by: amagai@nue.org
2001-11-19 23:23:28 +00:00
Brian Feldman
cd11f7bf9f
Reference lomac in its new location.
2001-11-19 22:36:40 +00:00
Brian Feldman
64b6b70e17
This commit was generated by cvs2svn to compensate for changes in r86629,
...
which included commits to RCS files with non-trunk default branches.
2001-11-19 22:34:06 +00:00
Brian Feldman
3795613d1d
Import LOMAC preliminary release 2.0.0 in src/sys/security. These files may
...
be modified and do not have to remain on the vendor branch.
http://opensource.nailabs.com/lomac/index.html
Sponsored by: DARPA, NAI Labs (CBOSS project)
2001-11-19 22:34:06 +00:00
Yaroslav Tykhiy
4cd48bace6
Eliminate another instance of the old and well-known
...
DoS bug that the select(2)/accept(2) pair is called on
a socket that is in the blocking I/O mode. The bug is
triggered if a selected connection dies before the accept(2)
leading to the accept(2) blocking virtually forever.
MFC after: 1 week
2001-11-19 21:52:03 +00:00
John Baldwin
3e9fbbe1df
Use modules-depend instead of kernel-depend for doing the depend stage
...
in doMODULES.
2001-11-19 21:42:08 +00:00
John Baldwin
839dfafeff
Split the mfsroot out from the kernel for the 2.88 boot floppy and the
...
Alpha CD. This makes it easier to customize ISO's locally by being able
to replace either the mfsroot or the kernel w/o having to do both. It also
allows us to switch to using the full GENERIC kernel when booting from CD
on the Alpha and on x86 when using cdboot. We don't do this yet, however.
Tested on: x86, alpha
2001-11-19 21:27:00 +00:00
Robert Watson
b5dfbbe3f3
o Cleanup of includes: user.h may be a catch-all, but that's not
...
entirely desirable. Back out previous commit, and clean up includes
to be more minimal.
Submitted by: bde
2001-11-19 21:14:50 +00:00
Ian Dowse
c0bea86dc4
Back out revision 1.117; the correct solution is to upgrade the
...
firmware on the drive in question. The pattern also matched far
too many Hitachi drives.
Spotted by: dg
2001-11-19 20:50:44 +00:00
Akinori MUSHA
bd90b9c76e
Fix style bugs I found, and add a comment.
2001-11-19 20:39:24 +00:00
Brian Feldman
6fba85a0cf
The "lomac" module compiles fine on Alpha, too.
...
Tested by: wilko
2001-11-19 20:25:55 +00:00
Giorgos Keramidas
a521a4eece
Other committers do not mention their personal names and/or email
...
addresses when adding stuff, so it seems fair to stop ``getting all
the fame'' by having my name displayed on login sessions.
Approved by: nik
2001-11-19 20:17:19 +00:00
Akinori MUSHA
25e04004ff
Oops sorry, forgot to add a #include.
2001-11-19 20:15:10 +00:00
Akinori MUSHA
d919a882fd
- Do not reference argv[1] if no argument is given.
...
Reported by: brian
- Call error() instead of errx() if compiled as sh(1) builtin.
2001-11-19 19:57:45 +00:00
David Malone
46fdbb8ad4
In the "UseLogin yes" case we need env to be NULL to make sure it
...
will be correctly initialised.
PR: 32065
Tested by: The Anarcat <anarcat@anarcat.dyndns.org>
MFC after: 3 days
2001-11-19 19:40:14 +00:00
Munechika SUMIKAWA
9ef912e8ec
Support MELCO LUA2-TX USB ethernet adaptor.
...
Actually this porting supports Pegasus II chip so I guess some other
devices supported by NetBSD also work. But the devices list are not
included because I cannot confirm if they work.
Obtained from: NetBSD
MFC after: 3 weeks
2001-11-19 18:47:49 +00:00
Munechika SUMIKAWA
c9fcd7dde0
Regen.
2001-11-19 18:41:35 +00:00
Munechika SUMIKAWA
b62f13198a
Add Melco LUA2-TX5.
2001-11-19 18:40:17 +00:00
Brian Feldman
a066b1c1d5
Add module "lomac" to the modules Makefile, i386 section. If someone on
...
Alpha can verify that it compiles fine there, too, this should be moved
to the MI section (or that problem fixed); I've only had x86 hardware to
est with.
Sponsored by: DARPA, NAI Labs (CBOSS project)
2001-11-19 18:15:12 +00:00
Brian Feldman
4c4771369c
Depend on vnode_if.h.
2001-11-19 18:12:46 +00:00
Brian Feldman
21180f280b
Use appropriaate include path for syscall_gate.h
2001-11-19 18:12:12 +00:00
Josef Karthauser
37787fbcce
Cull picobsd/custom. It's bit rotted beyond all recognition.
...
Approved by: freebsd-small
2001-11-19 18:04:04 +00:00
David E. O'Brien
09b50a9891
Add the CVS knob so it may be overridden (or have options added).
...
Submitted by: Andrea Campi <andrea@webcom.it>
2001-11-19 17:43:29 +00:00
David E. O'Brien
03820e7a36
Upper case the FreeBSD loader prompt.
...
On OFW based machines, it is just too confusing having the firmware and
OS loader giving the same prompt. This is a nice compromise that 99% of the
users on non-OFW platforms will probably not even notice.
2001-11-19 17:30:26 +00:00
Ian Dowse
b0cb4883b1
Deal with a few issues that cropped up following the recent changes
...
to the code for translating socket and private ioctls:
- Only perform socket ioctl translation if the file descriptor is a
socket.
- Treat socket ioctls on non-sockets specially, and for now assume
that these are directed at a tap/vmnet device, so translate the
ioctl numbers as appropriate (the way if_tap abuses some socket
ioctls to pass non-ifreq data is utterly bogus, but this is how
VMware on FreeBSD has always "worked"; I will deal with this
later).
- Add (untested) support for translating SIOCSIFADDR.
- In all cases where we fail to translate an ioctl, return ENOIOCTL
so that other handlers have a chance to do the translation.
This should fix the "/dev/vmnet1: Invalid argument" errors that
users of VMware were experiencing, though I have only verified this
on RELENG_4.
Submitted by: des (mostly)
MFC after: 3 days
2001-11-19 15:43:50 +00:00
Robert Watson
123f65b0e9
#include <sys/user.h> rather than individually including a plethora
...
of kernel include files, reducing the replication of kernel include
dependency information in userland.
Obtained from: TrustedBSD Project
2001-11-19 15:26:36 +00:00
Makoto Matsushita
25337c6246
Add fsck tool for UFS to /stand tools (again).
...
Actually src/release/i386/boot_crunch.conf rev 1.45 does this change,
but unfortunately there is no src/sbin/fsck_4.2bsd directory, but
src/sbin/fsck_ffs.
This commit replaces 'fsck_4.2bsd' to 'fsck_ffs', and add a link to
'fsck_4.2bsd' and 'fsck_ufs'. Note that 4-stable's fsck(8) have an
ability of fsck_ffs also, there is no need to MFC at least now.
Tested only for: i386 (but I believe this doesn't break for other archs)
2001-11-19 14:43:29 +00:00
Hellmuth Michaelis
224a719b5f
Close files only if the fp is != NULL.
...
PR: bin/31913
Submitted by: Harald Hanche-Olsen <hanche@math.ntnu.no>
Reviewed by: hm
MFC after: 1 week
2001-11-19 14:19:21 +00:00
Sheldon Hearn
b695d548a3
Use shell functions for printing hex instead of printf(1) so that
...
printf(1) can be dropped from the system shell as a shell builtin.
2001-11-19 11:41:51 +00:00
Ruslan Ermilov
633621512e
Apply README style guidelines (this time checked).
2001-11-19 10:10:27 +00:00
Maxim Sobolev
783c41d432
Make kevents on pipes work as described in the manpage - when the last
...
reader/writer disconnects, ensure that anybody who is waiting for the
kevent on the other end of the pipe gets EV_EOF.
MFC after: 2 weeks
2001-11-19 09:25:30 +00:00
Murray Stokely
fef69244b8
Fix two minor grammar mistakes.
...
PR: docs/32083
Submitted by: setantae@submonkey.net
2001-11-19 09:01:43 +00:00
Murray Stokely
14fa6ac81b
Add a missing word to form a complete sentence.
...
PR: docs/32084
Submitted by: setantae@submonkey.net
2001-11-19 08:35:59 +00:00
Murray Stokely
7261d8132c
Remove a duplicate word.
...
PR: docs/32087
Submitted by: setantae@submonkey.net
MFC After: 2 days
2001-11-19 08:20:24 +00:00
Murray Stokely
f6db21a6eb
Use .Nm to correctly display the program name.
...
PR: docs/32086
Submitted by: setantae@submonkey.net
MFC After: 2 days
2001-11-19 08:12:17 +00:00
Peter Wemm
d65d6e5e21
s/code/ucode/ (last minute typo)
2001-11-19 08:06:56 +00:00
Peter Wemm
bc11d59b2a
Initial cut at calling the EFI-provided FPSWA (Floating Point Software
...
Assist) driver to handle the "messy" floating point cases which
cause traps to the kernel for handling.
2001-11-19 07:25:42 +00:00
Jun Kuriyama
a5908fe02a
Add support for Intel's i820/i840/i845/i850/i860 chipset.
...
Submitted by: nork@cityfujisawa.ne.jp (Norikatsu Shigemura)
2001-11-19 07:15:45 +00:00
Peter Wemm
24ffe931b9
Lookup the EFI_FPSWA driver and pass the interface pointer through to the
...
kernel before we call ExitBootServices(). I've typed the definitions
in efifpswa.h from the Intel FPSWA manual (urk).
2001-11-19 07:09:47 +00:00
Peter Wemm
1ccc5e6c4e
Use some (now) spare space for passing through a pointer to the FPSWA
...
Interface provided by EFI (Floating Point SoftWare Assist).
2001-11-19 07:07:09 +00:00
Peter Wemm
de76c8189e
Remove bootinfo.bi_kernel. It isn't used by the kernel. struct bootinfo
...
should go away on ia64, we should be loader metadata based since that is
the only way we can boot (loader, skiload).
2001-11-19 07:05:10 +00:00
Peter Wemm
a812f645bc
Fix a dependency violation, same as in libefi/elf_freebsd.c a while back.
2001-11-19 06:59:53 +00:00
Peter Wemm
8e92224a8a
This is used in C, not C++. functions with no args have func(void) in our
...
kernel.
2001-11-19 06:58:14 +00:00
Warner Losh
8529411cad
Add NEWCARD support to awi.
...
Devices obtained from NetBSD (+ zoom air 4000, which I added).
2001-11-19 06:42:11 +00:00
Warner Losh
e6c33a39ba
Create a module for awi.
2001-11-19 06:41:04 +00:00
Warner Losh
5bbac2b91d
Update to 1.23 pccarddevs
2001-11-19 06:28:20 +00:00
Warner Losh
d2e623d7ef
Add ZOOM as one of the bgous vendors
2001-11-19 06:27:33 +00:00
Warner Losh
3d3a4bbbe9
Add Linksys Instant Wireless Network PC Card from NetBSD
2001-11-19 05:34:55 +00:00
Warner Losh
eb321069c2
Update to 1.22 pccarddevs
2001-11-19 05:22:46 +00:00
Warner Losh
fec4038832
Nits to make it whitespace compatible with what I'm about to commit to NetBSD
2001-11-19 05:22:28 +00:00