mycroft
0b3f240c49
Ditto.
1993-09-02 19:05:40 +00:00
mycroft
e4f1378e00
For some reason I don't understand, a change disappeared from the CVS tree.
1993-09-02 19:04:41 +00:00
mycroft
ab8eff1f49
Don't look in /usr/local!
...
Can I shoot Phil? Please?
1993-09-02 18:48:31 +00:00
mw
3b2546cf2e
new source release integrated from amiga-release.
1993-09-02 18:05:24 +00:00
mw
f208f36711
Update of arch/amiga tree, includes
...
- realtime clock support for a2k and a3k
- scsi drivers for a2091 and gvp-II controllers in a2k
- working ethernet driver for a2065/ameristar lance-controllers
1993-09-02 16:52:31 +00:00
mw
9ecae8d2e1
Initial revision
1993-09-02 16:52:30 +00:00
mw
7dac6517f1
Update of arch/amiga tree, includes
...
- realtime clock support for a2k and a3k
- scsi drivers for a2091 and gvp-II controllers in a2k
- working ethernet driver for a2065/ameristar lance-controllers
1993-09-02 16:52:13 +00:00
paulus
3ecb88ccbc
Fixed bug in if_ppp.c so that received IP packets are passed correctly to BPF.
1993-09-02 12:10:59 +00:00
cgd
c10d5aa752
get rid of bogus #define of resettodr(); now setting time actually works!
1993-09-02 02:10:35 +00:00
jtc
afa3cebb3c
Add stuff for HP300 that "looks" right.
1993-09-02 01:50:22 +00:00
cgd
8a641487bb
fix typo, and use "posix_only" rather than "right_only". everything
...
else in the world, i.e. other UNIX boxes, and WWV, are == "posix_only"
1993-09-02 01:10:03 +00:00
jtc
c0b7ba2878
i386 kernel uses a different setjmp() than the C library does.
1993-09-02 01:01:47 +00:00
jtc
234dcd9a54
Use .PATH: to grab appropriate files from the C library.
1993-09-02 01:00:42 +00:00
cgd
011b7a0917
kill typo. you check if things are "defined", not "defgined". 8-)
1993-09-01 23:16:57 +00:00
cgd
491d6b4b9d
fix problem where exec would lose on shell scripts with symlinks in
...
their names. fix from "James W. Dolter" <jdolter@sawtooth.eecs.umich.edu>.
test script:
#!/bin/csh
mkdir /tmp/foodir
cat > /tmp/foodir/testscript <<EOF
#!/bin/sh
echo "Executing script \$1"
EOF
chmod 755 /tmp/foodir/testscript
(cd /tmp ; ln -s foodir foosym)
echo "Trying full path (w/o symlink) to /tmp/foodir/testscript"
/tmp/foodir/testscript "with out symlink"
echo "Trying full path (w/ symlink) to /tmp/foosym/testscript"
/tmp/foosym/testscript "with symlink"
echo "End of Test"
1993-09-01 21:43:50 +00:00
jtc
4e075d626f
Start of libkern.a
1993-09-01 21:14:13 +00:00
glass
2cb87de98b
fixs long broken 'dequeue' macro which would expand to 'dequeue_head' which
...
is never defined. added fix from my private sources:
#define dequeue_head(queue) remqueue(queue, queue_first(queue))
no one noticed, because everyone used the 'remqueue' interface except me.
1993-09-01 15:55:26 +00:00
glass
5da38538f7
sun3 has scanc support, so it doesn't need the ufs_subr.c version
...
this crud will go away with the usage of libkern
1993-09-01 15:53:42 +00:00
glass
9b5c6f79ab
sun3 like n-other platforms is currently using the empty cpu_disklabel struct
1993-09-01 15:51:21 +00:00
deraadt
5d5fd66358
it's clear that mountd started from inetd doesn't work
1993-09-01 09:43:33 +00:00
deraadt
42fd09c8e9
it is clear that mountd started from inetd does not work
1993-09-01 09:43:09 +00:00
deraadt
20c3896fb4
MID_PC532 (NS32532 w/ 4K pagesize)
1993-09-01 08:56:03 +00:00
deraadt
408a659fa9
pc532 has an empty cpu_disklabel
1993-09-01 08:54:36 +00:00
deraadt
ae8b49f87b
#ifdef pc532 in same places as #ifdef i386
1993-09-01 08:49:45 +00:00
deraadt
369e28bc1c
addition of the pc532 architecture
1993-09-01 08:44:05 +00:00
mycroft
73c9dd61b0
Add ed2, as per GENERICAHA.
1993-09-01 05:36:33 +00:00
mycroft
3db4b24245
Add ed2 at 0x300, irq 10, 0xcc000, which people can configure by hardware.
1993-09-01 02:31:10 +00:00
jtc
53229bead2
Provide C language versions of the netorder functions.
...
These may be "good enough" for big-endian systems that do not have assembly
language versions of their own. A compiler should be able to do a fairly
good job optimising them, it probably won't be smart enough to omit the
stack frame, but then again, these functions won't be called unless the
macro versions are undef'd.
On the other hand, they are only intended for bootstrap purposes on little-
endian systems. They should be replaced with assembly language versions as
soon as possible.
1993-08-31 19:00:11 +00:00
mycroft
ce9288836b
Clean up deleted files.
1993-08-31 13:48:48 +00:00
deraadt
0f874c8bdd
ensure config.new is installed as config.new, and not over top of the
...
other config program
1993-08-31 13:48:46 +00:00
deraadt
28c37a0949
fixed a little /lib/cpp boo-boo
1993-08-31 13:46:31 +00:00
cgd
d365662684
ok, initialize that errno, to make theo and gcc2 happy...
1993-08-31 01:52:34 +00:00
cgd
518f7c78d6
a program being exec'd *must* cause *some* exec commands to be invoked;
...
if it doesn't there's a problem in the kernel, because a program
with no exec commands run will have no address space except the stack,
and i don't think it's valid to have a "run from stack only" exec type,
so panic. if need for that case comes up later, it can be changed...
1993-08-31 01:46:36 +00:00
paulus
d71061b357
Modified if_ppp.c and if_ppp.h to add priority queueing for "interactive"
...
traffic (done in a similar fashion to if_sl.c), and BPF support.
1993-08-31 00:05:27 +00:00
mycroft
b8302e3744
Excuse me while I be braindead for a minute.
1993-08-30 18:53:06 +00:00
mycroft
f597ddb137
Add new uname() cookies like getty.
...
(I had thought telnetd spawned a getty. Sigh.)
1993-08-30 18:50:53 +00:00
brezak
5bce7d4176
Add prototype for pmap_bootstrap().
1993-08-30 18:09:57 +00:00
deraadt
2700f4771d
add ppp
...
tty_ring.c -> tty_subr.c
vfs__bio.c -> vfs_bio.c
1993-08-30 07:30:35 +00:00
glass
42ac31d081
make config.new on all platforms
1993-08-30 07:19:32 +00:00
deraadt
a87b4a30bd
pagers are now options, not pseudo-devices
1993-08-30 07:09:20 +00:00
deraadt
86d51ac6f8
pagers are not options, not pseudo-devices
1993-08-30 07:07:53 +00:00
glass
144656cf78
back to torek's Makefile
1993-08-30 07:01:01 +00:00
deraadt
6fce70ed63
blast it, i forgot two ('s
1993-08-30 06:25:10 +00:00
alm
c91a4017da
Repeating a search requires only `/' (or `?'), not `//' (or `??')
...
But `s/' is still invalid, use `s//' instead.
If first regex is invalid, regex pointer is now set to NULL so that repeating
the search correctly reports "No previous pattern".
1993-08-30 02:20:18 +00:00
mycroft
667d6bcc32
Change default banner to say `%s/%m' rather than `NetBSD'.
1993-08-29 22:49:36 +00:00
mycroft
cea87043b4
Add some more magic cookies for the `im' string to display info from
...
uname(2):
%s sysname
%r release
%v version
%m machine
1993-08-29 22:47:03 +00:00
deraadt
2315608edc
missing eol at end of file
1993-08-29 21:34:25 +00:00
deraadt
9aed375ba3
tty XXstart() routines return void
1993-08-29 13:46:31 +00:00
deraadt
a14da75496
add MID_SPARC
1993-08-29 13:25:25 +00:00
deraadt
bab3a9ce58
added two __P() macros
1993-08-29 13:16:04 +00:00