bouyer
c85510bdd7
Factor out initialisation of t_msgout.count
...
clear scntl4 in sdtr/wdtr negotiation
2002-04-29 15:45:05 +00:00
bouyer
1a268e6df1
Add a missing esiop_script_sync(), and debug messages improvements.
2002-04-29 15:44:16 +00:00
manu
36b681f651
Added a void framework for usync_cntl(), which is another undocumented IRIX
...
system call.
2002-04-29 14:40:23 +00:00
martin
8853536066
Patches from Matthias Drochner, slightly modified by me:
...
Remove the clear-the-irq-after-enabling it dance (which had bad side
effects on some cards). Instead disble the ISAC receiver when we have
interrupts disabled. Adjust the interrupt handler to properly deal with
subtle differences of the ISAC implementation in IPAC chips.
2002-04-29 13:42:42 +00:00
lukem
fa2a19276b
consistently use sizeof(bb) instead of SUN68K_BOOT_BLOCK_MAX_SIZE
2002-04-29 13:07:41 +00:00
lukem
d1d73e68b7
don't bother warning or supporting obsolete $critical_filesystems_beforenet
...
or $critical_filesystems; postinstall now checks for these
2002-04-29 12:29:53 +00:00
lukem
4d5e7bcd0b
we might as well provide a handy "postinstall-fix" target whilst here
2002-04-29 12:14:36 +00:00
lukem
25bdefc720
don't bother warning or supporting obsolete $ip6forwarding;
...
postinstall now checks for this
2002-04-29 12:13:14 +00:00
lukem
2a48d151ab
don't bother warning about obsolete $defcorename and $nfsiod_flags;
...
postinstall now checks for these
2002-04-29 12:10:23 +00:00
lukem
1338b74b9f
move postinstall from afterinstall to separate "postinstall-check" target.
...
requested by Matthias Scheler <tron@zhadum.de>.
2002-04-29 12:09:13 +00:00
lukem
546b01ef65
don't bother warning about obsolete $amd_master; postinstall now does this
2002-04-29 12:08:17 +00:00
lukem
5d082ef225
- cmpdir(); use "cp -f" (instead of "cp") to copy files
...
- do-rc(); check for obsoleted rc.conf(5) variables
2002-04-29 12:05:45 +00:00
lukem
3d13a59112
- deprecate ip6forwarding in favour of ip6mode
...
- various grammar fixes
2002-04-29 10:27:14 +00:00
tsutsui
8f9d2b8500
Add a delay() in adb_read_date_time() so that my Apus2000 can get
...
correct date in inittodr().
2002-04-29 10:15:29 +00:00
mrg
86477819ce
regenerate.
2002-04-29 09:55:11 +00:00
mrg
0ce90a9fef
build the netbsd32_compat* objects into libcompat.a, so they are available
...
to emulations not just netbsd itself. rename the compat_10 functions to
match everything else. fixes a problem reported by julian coleman.
2002-04-29 09:53:39 +00:00
uch
7eaf6db5bd
remove #if 0 #endif
2002-04-29 09:33:30 +00:00
uch
01eebf7a36
KNF.
2002-04-29 09:32:56 +00:00
lukem
9d32fc1a83
add postinstall info
2002-04-29 08:36:20 +00:00
lukem
c83924b939
ssh: try renaming /etc/ssh/ssh{,d}.conf -> /etc/ssh/ssh{,d}_config before
...
/etc/ssh{,d}.conf -> /etc/ssh/ssh{,d}_config.
2002-04-29 08:31:01 +00:00
lukem
244b762de1
Complete the conversion back to the OpenSSH default configuration files of
...
"/etc/ssh/ssh_config" (from "/etc/ssh/ssh.conf") for ssh(1) and other
userland tools, and "/etc/ssh/sshd_config (from "/etc/ssh/sshd.conf")
for sshd(8).
etc/postinstall will detect this, and if "fix" is given, rename the files.
2002-04-29 08:23:34 +00:00
lukem
21d59649a5
add (optional) etc/postinstall
2002-04-29 07:28:27 +00:00
lukem
a65f716c1b
- ssh: check for obsolete sshd_conf_dir
...
- add extra arg to cmpdir() (before files list), which is the target
mode of copied files
- implement rcconf_isset(), which checks if an rc.conf(5) variable is set
and warns if so.
- minor tweaks
2002-04-29 06:05:24 +00:00
lukem
8323badb7a
deprecate $sshd_conf_dir (and hardcode as "/etc/ssh").
...
$sshd_conf_dir wasn't as flexible as liked (it didn't work for ssh(1),
host keys or known_hosts).
2002-04-29 05:56:25 +00:00
lukem
b3cffe8cbf
deprecate $sshd_conf_dir and hardcode /etc/ssh.
...
$sshd_conf_dir wasn't as flexible as liked (it didn't work for ssh(1),
host keys or known_hosts).
2002-04-29 05:55:05 +00:00
sommerfeld
dbe42df9af
Insert .WAIT between maketars and makesums in sets: dependancy.
...
An explicit makesums: maketars dependancy was not used because a
release engineer might want to regenerate the sums only and not the
tarballs; there's no explicit dependancy tracking here or elsewhere
between the input files and the output tarballs so everything gets
rebuild always.
XXX The existing "maketars" script is also not friendly to parallel
builds -- all of the sets files should be visible to the makefile so
they can be built in parallel.
2002-04-29 05:02:57 +00:00
sommerfeld
bf3e3eb4dc
Make all elements of SRCS (set in arch-specific makefile) depend on
...
the message headers; previous list was woefully incomplete and caused
parallel builds to explode.
2002-04-29 04:40:00 +00:00
sommerfeld
128f7ba0f7
Invoke the "make crunchgen_objs" submake with -B so we aren't confused
...
if we're being invoked in the context of a parallel build.
2002-04-29 04:20:56 +00:00
rafal
e9ca49cdee
Fix nasty crashes on IP22 machines with console running at 38.4kbps (which
...
generally translates to "high interrupt load") -- the old code re-enabled
interrupts in the machine-specific hardware interrupt handler causing the
handler to be re-entered, possible multiple times. Could lead to kernel
stack overflows, and all sorts of mysterious crashes/hangs as a result.
While here, fix up the IP32 interrupt handler code to also not re-enable
interrupts.
Thanks for ideas/comments go to Chuq and Stephen Ma.
2002-04-29 02:06:14 +00:00
thorpej
7be035e7c7
Only print console messages about SIGSEGV and SIGILL if the
...
kernel was built with DEBUG.
2002-04-29 01:54:11 +00:00
simonb
eb0846961e
Remove <sys/types.h> from synopsis, as per latest SUS/Posix specs.
2002-04-29 01:41:43 +00:00
enami
cb3d9867b6
Log who invoked the s[ug]id program. Tested by mozilla.
2002-04-28 22:35:19 +00:00
bjh21
2b918abe52
I believe I've fixed nbmake's dependency on /bin/sh.
2002-04-28 22:28:38 +00:00
bjh21
8dd390a3ac
This script is run on the host for cross builds, so it can't use mktemp -d.
...
Use a tidied-up version of my shell fragment from maketars instead.
2002-04-28 22:17:43 +00:00
mjacob
85fc807bc1
suggestion from Jason: have (in non-verbose boot case) card type printed out
...
on same line as attachment line.
2002-04-28 21:32:14 +00:00
manu
adc1ff6c40
Added pread() and pwrite()
2002-04-28 20:23:21 +00:00
manu
fc1efb9ee8
Use stack rlimit for the stack size, and not the current stack size. This
...
avoids requestion 2*rlimit on second sproc call.
2002-04-28 19:42:13 +00:00
manu
c2f72d8d1c
Updated PR_GETNSHARE and added PR_TERMCHILD
2002-04-28 17:56:53 +00:00
briggs
98ec565a96
Catch up with 1.5 branch... Allow nvram device to be omitted from kernel
...
configuration. Fix noted by Izumi Tsutsui <tsutsui@ceres.dti.ne.jp> and
problme noticed by Louis Guillaume <lguillaume@berklee.edu>.
2002-04-28 17:55:47 +00:00
wiz
b1017b64f1
Formatting, grammar, spelling, and other improvements.
2002-04-28 17:44:43 +00:00
manu
3568060679
Implements IRIX sproc(2) and friends.
...
There may be a problem with stack size overflow in this implementation
2002-04-28 17:21:58 +00:00
atatat
c583268d4e
That should be "ls -lTd", not "ls -lT"
2002-04-28 17:21:33 +00:00
uch
6d338ff407
Use "#define<tab>", white space nits.
2002-04-28 17:10:32 +00:00
atatat
66ffa38431
Provide some documentation on the EPASSTHROUGH new world order.
2002-04-28 14:13:38 +00:00
msaitoh
c67dc60a0a
add missing postsig() call.
...
I don't know whether this is true fix or not.
2002-04-28 12:51:14 +00:00
zuntum
0f1273fc58
Xref fabs(3)
...
OK'd by Jaromir Dolecek
2002-04-28 11:52:43 +00:00
msaitoh
ccc0ee640f
add missing softintr_establish() call.
2002-04-28 11:38:48 +00:00
isaki
12c2ab4d69
use ${PWD_MKDB} instead of pwd_mkdb.
2002-04-28 11:29:29 +00:00
isaki
7b175df846
Add 'newdisk' entry dropped at previous commit.
2002-04-28 11:28:44 +00:00
isaki
dada32dfc5
Fix path.
2002-04-28 07:31:54 +00:00