lukem
1e372f6cf9
implement opendisk(3), as discussed with Jason Thorpe
1997-09-25 04:53:30 +00:00
thorpej
d65a5e7fd2
Enter DDB on cntl-alt-esc (a'la i386).
1997-09-25 02:42:47 +00:00
thorpej
ef86b9a61d
Fix a small oversight in last change.
1997-09-25 02:13:44 +00:00
thorpej
d10050d5b9
sizeof() returns a size_t which is an unsigned long on the Alpha. We have
...
to use %lu and a cast to u_long to print these in a portable way.
1997-09-25 01:45:14 +00:00
thorpej
0c2efd7025
Add a "scrollskip" member to wscons_emulfuncs (XXX even though it's not
...
a function) which specifies how many lines will be skipped when scrolling
up when the bottom of the screen is reached. Dumb framebuffers skip 10
lines (as before) because the copies are s ... l ... o ... w, but it's
silly to skip 10 lines on VGA, since the copies are much faster, so we
only skip one in that case.
1997-09-25 01:31:53 +00:00
thorpej
76786b38b6
Mimmick the logic used by other drivers to determine if we should use
...
memory-mapped or i/o-mapped access to the device registers, and always
choose memory-mapped if it is enabled. In particular, do _not_ explictly
disable the space we decide to not use, as this confuses some versions
of Alpha console software (which are arguably buggy because of this
problem).
Also, fix a logic error pointed out by Ross Harvey <ross@teraflop.com>
that would cause memory-mapped access to never be enabled.
1997-09-24 22:46:29 +00:00
thorpej
a2721a0f1b
In vfs_shutdown(), do the "sync and wait for it to finish" _before_
...
unmounting all of the file systems. If we encounter a condition where
all of the dirty buffers could not flush, then don't unmount file systems,
since it might be likely to wedge.
1997-09-24 21:40:55 +00:00
is
4fbbe844dc
Locore.s cleanup round 1:
...
- MIT syntax to Motorola syntax moveml register lists (for better readability)
- comment alignment
- remove commented out debug or alternate code from early DraCo support
development.
(I wanted to do this stuff for a long time, but always had "more important"
things to do.)
1997-09-24 19:49:08 +00:00
matt
27b993ed37
Add support of SIOCIFMTU to vary mtu of interface. Also allow IFF_MULTICAST
...
on TUNSIFMODE (sometimes you'd like to do IP multicast on tunnel devices).
1997-09-24 19:45:11 +00:00
gwr
31fbffdc2e
stock binutils-2.8.1
1997-09-24 18:54:18 +00:00
gwr
9287cd69a3
Define DEFAULT_ARCH, DEFAULT_MID for netbsd.h
1997-09-24 18:39:10 +00:00
gwr
60e710094f
add vaxnetbsd
1997-09-24 18:31:37 +00:00
gwr
1b3c0ea923
Various fixes and cleanup (netbsd_core_vec.byte_order, core_core, etc.)
1997-09-24 18:24:08 +00:00
gwr
262e26b699
Add netbsd_core_vec if -DNETBSD_CORE
1997-09-24 18:15:07 +00:00
gwr
b6c526b702
Provide default definition of MACHTYPE_OK using DEFAULT_MID,
...
and do the N_SET_MACHTYPE thing using DEFAULT_ARCH. Both of
the DEFAULT_* definitions come from the including C file.
1997-09-24 18:13:03 +00:00
gwr
dfe47bfbbb
Set MY_entry_is_text_address (so we can debug a SunOS kernel).
1997-09-24 18:08:08 +00:00
gwr
c11a925750
Notes on dist/*, etc.
1997-09-24 18:02:25 +00:00
bouyer
a2f2e87677
Return the rigth value in the interrupt handler. This change the semantic
...
of wdc_atapi_intr, so we check for ITSDONE rather than the return value for
a pooled command.
1997-09-24 17:00:55 +00:00
gwr
fb5baea630
stock gdb-4.16
1997-09-24 16:57:14 +00:00
gwr
3144a4abd8
stock readline-2.1
1997-09-24 16:49:16 +00:00
gwr
32adbb9246
stock binutils-2.8
1997-09-24 15:39:15 +00:00
pk
2d32cc7658
Only reap children that are ready to be reaped from the SIGCHILD handler
...
(PR#4143; Uwe Arndt).
1997-09-24 13:22:06 +00:00
lukem
8b07f7ca3d
for now, #ifdef out a couple of chunks that were added in the lite2 merge
1997-09-24 09:24:21 +00:00
jeremy
449baf4d93
The sun3x distribution list. (Almost identical to sun3, will be merged
...
someday.)
1997-09-24 08:17:26 +00:00
jeremy
83676e3b7c
Added leds.h for /dev/leds.
1997-09-24 08:12:36 +00:00
jeremy
b8e30f3915
Add sun3x.
1997-09-24 07:55:24 +00:00
fair
bc102d2921
install mpool.3 and links, per PR#4055
1997-09-24 07:33:49 +00:00
jeremy
fe56753f5e
Add sun3x to the list of machines using this program.
1997-09-24 07:22:37 +00:00
mhitch
56c4befa83
Add an entry for the bus_space_tag in the TC attach argument tables. Fixes
...
PR #4100 .
1997-09-24 02:45:12 +00:00
mhitch
9769ae9148
Fix error in msgbuf change: add missing '&&'.
1997-09-24 02:20:56 +00:00
mhitch
5bcefb5bc6
Fix another missed *setregs() change.
1997-09-24 02:15:51 +00:00
mhitch
3bda138b2b
Fix a missed *setregs() change.
1997-09-24 02:13:11 +00:00
hubertf
9950ba9dbb
Fix type: srt-root -> src-root
1997-09-24 00:47:34 +00:00
mjacob
42c325e139
A minor barely acceptable hack to handle having a kernel boot on a system
...
with large amounts of memory and not spew. This doesn't really replace
fixing this problem better later, but it works for now. Basically, if memory
is greater than 128MB, start upping the sizes of some maps.
1997-09-23 23:23:23 +00:00
mjacob
b23bbbb05c
Redo the platform specific identification and initialization, making
...
it more explicit where platform specific functions (like machine check
handling) should go.
1997-09-23 23:15:42 +00:00
mycroft
3e5cee3ce5
If the region size turns out to be 0, return an error. This is what will
...
happen if we try to use a mapping register that's not actually defined.
1997-09-23 23:08:47 +00:00
mycroft
966e96d880
Regen.
1997-09-23 22:36:33 +00:00
mycroft
d23f3059e5
Add the Ensoniq AudioPCI.
1997-09-23 22:35:48 +00:00
thorpej
0bd1685aa0
In device_register(), don't check PCI is PCI support isn't configured
...
into the kernel.
Also, some formatting changes to make new root finding code more KNF'ish.
1997-09-23 22:34:00 +00:00
fair
7eaeaff5f2
fix some ints that should be "time_t" per PR#4139
1997-09-23 21:15:07 +00:00
pk
40c87730b3
Move KERNBASE to 0xf0000000.
1997-09-23 19:59:27 +00:00
lukem
90ec96df78
- use 'ftpd -C user' to check the format of /etc/ftpusers.
...
closes [security/4061]
- rename $MPPATH to $MPBYPATH, to clarify its use
1997-09-23 14:36:56 +00:00
lukem
96ad830ee2
- add '-C user', which runs checkaccess(user) and exits with the result
...
(0 == user allowed in /etc/ftpusers, 1 == user denied in /etc/ftpusers).
from Jim Bernard <jbernard@tater.mines.edu> in [security/4061] with mods
- getopt returns -1 not EOF
- in lostcon(), call dologout(1) not dologout(-1);
1997-09-23 14:25:30 +00:00
lukem
550665a814
implement '-c confdir', which allows the specification of an alternate
...
directory to look for the various configuration files, overriding /etc.
From Matthias Scheler <tron@lyssa.owl.de> in [bin/4133]
1997-09-23 13:56:39 +00:00
is
a3683f2819
We don't need md_get_ifdevs any more; install.sub calls ifconfig -l
...
nowadays.
1997-09-23 13:48:33 +00:00
phil
ea2fc3a36c
Add a missing ( in the pmap_enter call for the message buffer.
1997-09-23 13:48:15 +00:00
veego
c219cd3ba0
Restore revision 1.3: 'make depend' needs a config_local.h in the SRCS=
...
line of libamu/Makefile
1997-09-23 08:46:25 +00:00
veego
1a9080a871
Restore one change from revision 1.4: 'make depend' needs a config_local.h
...
in the SRCS= line of libamu/Makefile
1997-09-23 08:40:57 +00:00
pk
f5bb941f5b
MSGBUFSIZE needs no obscure adjustment; initmsgbuf() takes care of that.
1997-09-23 08:23:29 +00:00
pk
c209086562
The symbol `_msgbufaddr' is no longer exported.
1997-09-23 08:19:56 +00:00