kstailey [Thu, 16 Jan 1997 08:03:56 +0000 (08:03 +0000)]
use RB_TIMEBAD to indicate that the time is wrong and should not be copied
to the battery backed up clock via resettodr() in boot().
kstailey [Thu, 16 Jan 1997 07:27:22 +0000 (07:27 +0000)]
disambiguate somewhat
millert [Thu, 16 Jan 1997 05:48:02 +0000 (05:48 +0000)]
Correct logic such that newfs w/o -t on a device w/o a label
defaults to ffs like people expect.
millert [Thu, 16 Jan 1997 05:27:46 +0000 (05:27 +0000)]
getopt(3) fix that I missed in the previous sweep.
millert [Thu, 16 Jan 1997 05:20:28 +0000 (05:20 +0000)]
Man pages for libedit, from NetBSD.
millert [Thu, 16 Jan 1997 05:18:27 +0000 (05:18 +0000)]
Merge in NetBSD libedit changes and new man pages. Also fix some
strncpy() usage in their code. NetBSD change log was:
* add a man page for the editline routines
* add a man page describing editrc
* fix bugs in el_parse():
* didn't execute command when program name matched (test reversed)
* was checking against empty string instead of program name
* after checks, command to run also pointed to empty string
* document ^char and \ escape sequences
* when parsing ^char control chars, check the correct char when determining
validity (previously, ^char was a NOP interpreted as the literal string
because of this bug)
* Implement CC_REDISPLAY, which (unlike CC_REFRESH) redraws the entire input
* line (a la ^R). This is useful if the binding outputs information and
* mucks up the input line. To be used in ``list-choices'' bindings (refer
* to the ^D binding in csh when filec is set)
millert [Thu, 16 Jan 1997 04:57:04 +0000 (04:57 +0000)]
Speak in English and note that editline(3) now exists.
kstailey [Thu, 16 Jan 1997 04:22:49 +0000 (04:22 +0000)]
machdep.c
kstailey [Thu, 16 Jan 1997 04:19:41 +0000 (04:19 +0000)]
added RB_TIMEBAD bootflag
millert [Thu, 16 Jan 1997 04:04:18 +0000 (04:04 +0000)]
Update from NetBSD: adds chlen command and makes -Wall happy.
kstailey [Thu, 16 Jan 1997 04:03:40 +0000 (04:03 +0000)]
all modified code can now compile with -Werror -Wall -Wstrict-prototypes
CAVEAT: turning off -O2 produces warnings about "defined but not used"
functions from libkern.h
removed internal copy of gets() replaced with call to getsn()
fixed #ifdef ... #endif mismatch in swapgeneric.c
fixed printf() in if_ie.c that was missing an argument
fixed si.c so that it compiles
added tags to all edited files
millert [Thu, 16 Jan 1997 03:58:23 +0000 (03:58 +0000)]
From NetBSD: Warn about potentially unsafe uid/gid overrides.
millert [Thu, 16 Jan 1997 03:57:31 +0000 (03:57 +0000)]
Support VM_PSSTRINGS. Man, this has been sitting in my tree for a while...
millert [Thu, 16 Jan 1997 00:35:52 +0000 (00:35 +0000)]
getopt(3) returns an int, not char.
millert [Wed, 15 Jan 1997 23:40:20 +0000 (23:40 +0000)]
getopt(3) returns -1 when out of args, not EOF, whee!
maja [Wed, 15 Jan 1997 23:24:12 +0000 (23:24 +0000)]
sync with NetBSD 970112 -moj
kstailey [Wed, 15 Jan 1997 23:00:00 +0000 (23:00 +0000)]
add prototype of reboot2() via machdep.h
kstailey [Wed, 15 Jan 1997 22:33:53 +0000 (22:33 +0000)]
moved init of ret in randomioctl() to better location
millert [Wed, 15 Jan 1997 22:08:15 +0000 (22:08 +0000)]
From NetBSD: make testdb() fail if database version string has length zero.
Also, KNF, b* -> mem*, getopt tests against -1, not EOF, and index -> strchr.
Added OpenBSD tags.
rahnds [Wed, 15 Jan 1997 15:22:13 +0000 (15:22 +0000)]
Well, actually this seemed to be a bug in generic code, that
was being exercised. running with a 8k fs blk size and 4 k page
size was a problem. Now running with fs blk size == page size works
much better. The fix checked in a week or to back probably would fix
this too.
kstailey [Wed, 15 Jan 1997 07:09:29 +0000 (07:09 +0000)]
added prototypes, made some functions static, removed unused variables
now compiles with -Werror -Wall -Wstrict-prototypes
mickey [Wed, 15 Jan 1997 07:06:12 +0000 (07:06 +0000)]
add IPXIP option commented out, explanation.
kstailey [Wed, 15 Jan 1997 07:00:19 +0000 (07:00 +0000)]
extra braces to prevent warning about missing braces
deraadt [Wed, 15 Jan 1997 05:50:27 +0000 (05:50 +0000)]
sc_link.adapter_buswidth, set to 16 if wide scsi. if 0 it gets converted
to 8 internally so that drivers do not need to init it for regular scsi :-)
kstailey [Wed, 15 Jan 1997 05:35:46 +0000 (05:35 +0000)]
more missing prototypes and other warnings fixed
millert [Wed, 15 Jan 1997 05:27:55 +0000 (05:27 +0000)]
Minor formatting tweak from NetBSD (perry) + OpenBSD tags.
downsj [Wed, 15 Jan 1997 04:54:45 +0000 (04:54 +0000)]
Don't need this, /sys/compat/m68k4k works better.
OpenBSD/hp300 is now 8k!
kstailey [Wed, 15 Jan 1997 03:52:27 +0000 (03:52 +0000)]
prevent -Wall warning:
nfs_vfsops.c:456: warning: `adjsock' might be used uninitialized in this function
kstailey [Wed, 15 Jan 1997 03:27:14 +0000 (03:27 +0000)]
prevent warning:
in_pcb.c:182: warning: `old' might be used uninitialized in this function
kstailey [Wed, 15 Jan 1997 03:19:24 +0000 (03:19 +0000)]
prevent warning:
ppp_tty.c:790: warning: `s' might be used uninitialized in this function
kstailey [Wed, 15 Jan 1997 03:06:28 +0000 (03:06 +0000)]
fixed warning:
kernfs_vnops.c:305: warning: long unsigned int format, u_int arg (arg 3)
downsj [Wed, 15 Jan 1997 02:55:29 +0000 (02:55 +0000)]
8k
kstailey [Wed, 15 Jan 1997 02:03:53 +0000 (02:03 +0000)]
prevent this warning:
rnd.c:823: warning: `ret' might be used uninitialized in this function
when compiling with -Wall
kstailey [Wed, 15 Jan 1997 00:41:55 +0000 (00:41 +0000)]
added prototypes
niklas [Wed, 15 Jan 1997 00:36:56 +0000 (00:36 +0000)]
Add DESTDIR support for crt{begin,end}.o (powerpc only so far)
millert [Wed, 15 Jan 1997 00:01:22 +0000 (00:01 +0000)]
Clarification. From NetBSD.
maja [Tue, 14 Jan 1997 14:45:42 +0000 (14:45 +0000)]
Remove locc. -moj
downsj [Tue, 14 Jan 1997 10:33:00 +0000 (10:33 +0000)]
hack: if we're M68K, also allow us to strip M68K4K. Works for me.
tholo [Tue, 14 Jan 1997 04:47:08 +0000 (04:47 +0000)]
Use <fcntl.h>, not <sys/file.h>. Approved by Bob Corbett.
millert [Tue, 14 Jan 1997 04:36:47 +0000 (04:36 +0000)]
Update to tzdata1996n
millert [Tue, 14 Jan 1997 03:16:42 +0000 (03:16 +0000)]
Update to tzcode1996o + our fixes. Fixes problem pointed out
by cross@va.pubnix.com.
kstailey [Tue, 14 Jan 1997 02:25:20 +0000 (02:25 +0000)]
Debugger() is needed by KGDB not just DDB
millert [Tue, 14 Jan 1997 01:02:42 +0000 (01:02 +0000)]
Be extra careful when chdir'ing to subdirs.
deraadt [Tue, 14 Jan 1997 00:46:42 +0000 (00:46 +0000)]
RAW_PART
niklas [Mon, 13 Jan 1997 23:38:27 +0000 (23:38 +0000)]
preliminary support for the Apollo 060 accelerator
Thanks a lot, Michael van Elst <mlelstv@serpens.swb.de>
niklas [Mon, 13 Jan 1997 23:32:16 +0000 (23:32 +0000)]
Add a commented out option NSIP with explanation
kstailey [Mon, 13 Jan 1997 21:28:24 +0000 (21:28 +0000)]
reformatted ala KNF
deraadt [Mon, 13 Jan 1997 21:23:35 +0000 (21:23 +0000)]
egid for open; spotted by oliver@secnet.com
deraadt [Mon, 13 Jan 1997 20:54:25 +0000 (20:54 +0000)]
talk about inetd; kleink@layla.inka.de
deraadt [Mon, 13 Jan 1997 20:45:28 +0000 (20:45 +0000)]
correct; kleink@layla.inka.de
deraadt [Mon, 13 Jan 1997 20:36:23 +0000 (20:36 +0000)]
doc "more" command; jdc@orthanc.ncl.ac.uk
downsj [Mon, 13 Jan 1997 18:03:53 +0000 (18:03 +0000)]
fix DIO-II mappings, NetBSD PR#3097.
rahnds [Mon, 13 Jan 1997 17:54:31 +0000 (17:54 +0000)]
Important change to the installation notes.
pax must be used with the "-pe" option to keep
file ownership, group and permissions (eg suid) on the extracted file.
niklas [Mon, 13 Jan 1997 11:51:02 +0000 (11:51 +0000)]
Sync to 970110 NetBSD
graichen [Mon, 13 Jan 1997 11:43:41 +0000 (11:43 +0000)]
don't build the stand dir for now
graichen [Mon, 13 Jan 1997 11:42:47 +0000 (11:42 +0000)]
use the cpu_exec from the arc
graichen [Mon, 13 Jan 1997 11:36:28 +0000 (11:36 +0000)]
first try of an OpenBSD/pmax GENERIC kernel (config file)
graichen [Mon, 13 Jan 1997 11:35:30 +0000 (11:35 +0000)]
now also the pmax builds with the in-tree ld using an ld.script similar
to the arc
graichen [Mon, 13 Jan 1997 11:31:54 +0000 (11:31 +0000)]
my pmax (decstation 5000/200)
graichen [Mon, 13 Jan 1997 11:30:32 +0000 (11:30 +0000)]
type change to make it compile on the pmax of now
niklas [Mon, 13 Jan 1997 11:07:47 +0000 (11:07 +0000)]
Import compat_m68k4k from NetBSD
graichen [Mon, 13 Jan 1997 10:53:26 +0000 (10:53 +0000)]
small changes to get it compiled on the pmax (does'nt affect anything else)
graichen [Mon, 13 Jan 1997 10:31:56 +0000 (10:31 +0000)]
<pmax/xxx> -> <machine/xxx>
<mips/xxx> -> <machine/xxx>
... plus missing files from arc
rahnds [Mon, 13 Jan 1997 05:03:26 +0000 (05:03 +0000)]
Misc installation notes for installing the powerpc port.
Probably will change greatly or be moved eventually.
kstailey [Mon, 13 Jan 1997 02:53:50 +0000 (02:53 +0000)]
leds-extern.h -> ledsvar.h
kstailey [Mon, 13 Jan 1997 00:29:23 +0000 (00:29 +0000)]
back-panel LED control device derived from code by der Mouse
millert [Sun, 12 Jan 1997 23:43:03 +0000 (23:43 +0000)]
Fix core dump and use libc err(3) instead of private one (which had
slightly different semantics). Also clean up some gcc -Wall'isms.
downsj [Sun, 12 Jan 1997 15:12:06 +0000 (15:12 +0000)]
Mostly sync to NetBSD-current of 011196. Compiles, links, boots to single
user.
KNOWN NOT WORKING:
* DIO-II devices
* Dynamic executables
NOT EVEN TRIED:
* New config support
downsj [Sun, 12 Jan 1997 13:02:07 +0000 (13:02 +0000)]
protect against multiple includes
downsj [Sun, 12 Jan 1997 12:07:23 +0000 (12:07 +0000)]
add sys_pipe.c
tholo [Sun, 12 Jan 1997 09:08:27 +0000 (09:08 +0000)]
Be more Posixly correct; from FreeBSD
downsj [Sun, 12 Jan 1997 07:43:30 +0000 (07:43 +0000)]
sync and add OpenBSD IDs.
rahnds [Sun, 12 Jan 1997 00:43:12 +0000 (00:43 +0000)]
Release version certainly isn't 1.0, not really 2.0 either, but...
rahnds [Sun, 12 Jan 1997 00:31:27 +0000 (00:31 +0000)]
Do not link against libcrypt, It no longer exists.
rahnds [Sun, 12 Jan 1997 00:27:38 +0000 (00:27 +0000)]
Do not link against libcrypt, It doesn't exists anymore.
pefo [Sat, 11 Jan 1997 18:35:53 +0000 (18:35 +0000)]
Describe boolean capabilites betterand at a better place. It was rather
difficult to find before.
mickey [Sat, 11 Jan 1997 17:57:29 +0000 (17:57 +0000)]
implement mincore syscall, just like sunos & ultrix compat do.
niklas [Sat, 11 Jan 1997 11:58:11 +0000 (11:58 +0000)]
Support an ONLY_FOR_ARCHS var, that prohibits doing anything for a certain
port except for certain architectures. If OBJMACHINE is set set WRKDIR to
work.${MACHINE}. Fix a shell construct which pdksh interprets differently
than ash as it was written. Make bsd.own.mk be auto-included in make(1)
invocations below this one.
niklas [Sat, 11 Jan 1997 10:01:27 +0000 (10:01 +0000)]
Fix PR#2 in a simplistic way. Handle EOF on all getchar()s
niklas [Sat, 11 Jan 1997 00:12:17 +0000 (00:12 +0000)]
We run OpenBSD
pefo [Fri, 10 Jan 1997 23:41:25 +0000 (23:41 +0000)]
Use "locore.S" versions of block io operations.
They handle unaligned memory references.
niklas [Fri, 10 Jan 1997 23:18:40 +0000 (23:18 +0000)]
Correct a panic condition hitting on machines with NBPG != ffs blocksize,
plus having a large bufpages value compared to nbuf.
jkatz [Fri, 10 Jan 1997 19:09:58 +0000 (19:09 +0000)]
one-line fix so fdisk knows that partitions marked 0x0B are Win95/FAT32
kstailey [Fri, 10 Jan 1997 19:04:08 +0000 (19:04 +0000)]
use opendev(3) + man page correction
etheisen [Fri, 10 Jan 1997 18:29:48 +0000 (18:29 +0000)]
Leading underscores... Actually, they really DID fuck this up on the MIPS
and PPC platforms... Everyone else has _leading!
imp [Fri, 10 Jan 1997 06:53:35 +0000 (06:53 +0000)]
Change all mips ports to use mips-unknown-openbsd2.0 like gcc does.
This should allow for gdb to at least build on pmax, modulo potential platform
specific include files. This impacts gas, ld, and other critical system
components. Don't build this unless you are happy with your backups, as
always for a change of this nature. It works for me on my machine, however.
kstailey [Fri, 10 Jan 1997 05:59:24 +0000 (05:59 +0000)]
UNIX3.0 -> 3.0BSD in history section
rahnds [Thu, 9 Jan 1997 21:19:02 +0000 (21:19 +0000)]
Now that ELF symbols are working (not leading '_'), dont put them
in for these symbols either.
weingart [Thu, 9 Jan 1997 15:35:18 +0000 (15:35 +0000)]
max -> min typo
niklas [Thu, 9 Jan 1997 11:22:16 +0000 (11:22 +0000)]
HTTP fetches would always loop indefinitely
rahnds [Thu, 9 Jan 1997 05:46:45 +0000 (05:46 +0000)]
Closing down on the last few differences between the build area
and the checked in source.
rahnds [Thu, 9 Jan 1997 05:21:27 +0000 (05:21 +0000)]
Fix the SALIB dependancies correctly so that it builds and locates
the library.
Fix alloc.c so that the piece allocated is of the "correct" size for
the current allocation by splitting the buffer.
This was required so that free would work correctly if a large buffer
was allocated, then freed, the allocated again with a small allocation.
rahnds [Thu, 9 Jan 1997 05:01:53 +0000 (05:01 +0000)]
allow gdb to configure on powerpc port.
rahnds [Thu, 9 Jan 1997 04:58:49 +0000 (04:58 +0000)]
ignore new kernel
rahnds [Thu, 9 Jan 1997 04:24:39 +0000 (04:24 +0000)]
remove bpfa and bpfb, didnt know how to make device with minor of 'a' and 'b'.
rahnds [Thu, 9 Jan 1997 04:23:23 +0000 (04:23 +0000)]
Changes to shrink kc filesystem, remove update from dot.profile
and remove an extra file.
rahnds [Thu, 9 Jan 1997 04:16:51 +0000 (04:16 +0000)]
Add the ablity to hide symbols on ELF/OLF objects.
This is a first cut at the symbol hiding process for ELF.
The current method will not work properly on mips.
It has been tested for powerpc and should work on alpha.
The problem with mips is due to the standard PIC compilation.
rahnds [Thu, 9 Jan 1997 04:09:40 +0000 (04:09 +0000)]
add support for ELF in crunch, for crunchgen this means
do not add a leading underscore to symbol names.
Indicated to crunchgen by a "-E" option.
rahnds [Thu, 9 Jan 1997 03:55:06 +0000 (03:55 +0000)]
minimal kernel to fit on kc boot floppy.
rahnds [Thu, 9 Jan 1997 03:52:51 +0000 (03:52 +0000)]
Booting OpenBSD not NetBSD.
Change the print to reflect that.