summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1995-12-27from netbsd:Theo de Raadt
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
1995-12-27from leo:Theo de Raadt
Remove an unwanted interference between the 2 channels. Allocate the ringbuffer on a channel's first open.
1995-12-27from netbsd; Fix possible integer overflow when allocating PT mapTheo de Raadt
1995-12-27from leo; use doshutdownhooks()Theo de Raadt
1995-12-27from netbsd:Theo de Raadt
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
1995-12-27from netbsd:Theo de Raadt
Change splimp -> splnet in Ethernet, ARCnet, and FDDI drivers.
1995-12-27from netbsd:Theo de Raadt
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
1995-12-27from netbsd:Theo de Raadt
The IST_* and IPL_* constants are not bus-specific; don't treat them as such. Change splimp -> splnet in Ethernet, ARCnet, and FDDI drivers.
1995-12-27from netbsd; merge latest Thomas version with our minimal changesTheo de Raadt
1995-12-27from netbsd; add some castsTheo de Raadt
1995-12-27If mountd is unable to export a filesystem due to a hostname being invalidDavid Krause
or specified on two (conflicting) lines it now logs the offending hostname
1995-12-27Support LDSTATIC and BINDIRNiklas Hallqvist
1995-12-27from netbsd; copy md_flags at fork time (fixes npx problems)Theo de Raadt
1995-12-27Only warn about non-kerberos protocol if kerberos has been configured withThorsten Lockert
a local realm (/etc/kerberosIV/krb.conf is set up).
1995-12-27Do not use hard-coded realm nameThorsten Lockert
1995-12-26from neil; add ccdTheo de Raadt
1995-12-26from netbsd; Enable paging of the user areaTheo de Raadt
1995-12-26from netbsd; enable cpu_swapout(), which must save npx stateTheo de Raadt
1995-12-26from perry:Theo de Raadt
fix my own pr 1762, in which it was noted that boot2 used a busy loop to time out the boot prompt. Now uses a usleep() routine that calls the BIOS and the functionality is separate from gets(). Timeout is #defined to 5 seconds. Also did some minor cleanup in preparation to prototype/ANSIfy everything. (problem was originally reported by deraadt a number of years ago)
1995-12-26from netbsd:Theo de Raadt
Add emulation of Ultrix select: before calling native sys_select(), limit the number of FDs to select on to the maximum supported by NetBSD -- which is as many FDs as the emul_ultrix process can have open, anyway. Add emulation of Ultrix getmnt(2) in ultrix_fs.c Add partial emulation of Ultrix tty ioctl()s in ultrix_ioctl.c, derived from compat/sunos/sunos_ioctl.c. Ultrix libc's ``isatty()'' now works in compat_emul processes. Fix ultrix_sys_select() entry. Add emulation of ultrix mount(2). Sufficient to NFS-mount filesystems using a NetBSD kernel in an ultrix root filesystem. Move wait emulation to the old (v7) wait syscall number, as that's what the Ultrix ufs_mount binary uses.
1995-12-26Added entries for /etc/ppp to mtree filesDavid Krause
1995-12-26update from netbsdTheo de Raadt
1995-12-26from netbsd:Theo de Raadt
machine-independent TurboChannel bus configuration. These files deal with stuff like: (1) configuring built-in devices, (2) looking at TC slots configuring any devices found. The lists of slots, slot locations, etc. and built-in devices are provided by machine-dependent code. Interrupt handling is also provided by machine-dependent code, but the MD code provides hooks so that standard names for 'establish' and 'disestablish' can be used in drivers.
1995-12-26from netbsd:Theo de Raadt
autoconfiguration information for the TurboChannels System ("IOCTL") ASIC found in many DECstations and all of the TC-bus Alphas. This is provided so that the machine-independent TC if_le driver will be able to use it.
1995-12-26from netbsd:Theo de Raadt
Machine-independent TurboChannel LANCE driver. As-is, this driver should work properly with: (1) LANCE chips hanging off the system IOCTL asic, (2) LANCE chips TurboChannel option boards. Support for various PMAX-family baseboard options isn't yet in this file, but should be easy to add.
1995-12-26from netbsd:Theo de Raadt
files file to define 'tcbus' attribute, to which 'tc's attach. also defines tc device. does _not_ define le driver, because of conflicts with other (e.g. ISA) le drivers. (Alpha kernel configuration files include files.isa and files.tc.)
1995-12-26from netbsd:Theo de Raadt
Change mips assembly code for {,_,sig}setjmp.S to get register names from <machine/regnum.h>, not <machine/reg.h> (which also defines structs.)
1995-12-26from netbsd; deal with ufs -> ffs transitionTheo de Raadt
1995-12-26from netbsd:Theo de Raadt
IO bus for 3000-family boxes is now "tcasic" when then attaches tc. esp_iomem is unnecessary, has been unnecessary for a while, apparently.
1995-12-26from netbsd: if subdevice not configured, print something out about it.Theo de Raadt
1995-12-26from netbsd:Theo de Raadt
portability definitions for machine-independent TC configuration code.
1995-12-26from netbsd: move DELAY's functionality into delay()Theo de Raadt
1995-12-26from netbsd:Theo de Raadt
deal with renaming of asic to ioasic, and other new-tc-config changes
1995-12-26from netbsd:Theo de Raadt
machine-independent TurboChannel bus configuration. These files deal with stuff like: (1) configuring built-in devices, (2) looking at TC slots configuring any devices found. The lists of slots, slot locations, etc. and built-in devices are provided by machine-dependent code. Interrupt handling is also provided by machine-dependent code, but the MD code provides hooks so that standard names for 'establish' and 'disestablish' can be used in drivers. This code requires <machine/tc_machdep.h>, which defines some portability types specific to the TurboChannel bus code.
1995-12-26from netbsd; rename TC 'asic' to 'ioasic'Theo de Raadt
1995-12-26from netbsd:Theo de Raadt
Add support for ptrace PT_GETREGS and PT_SETREGS for NetBSD/pmax: * define PT_GETREGS and PT_SETREGS in pmax/include/ptrace.h * Flesh out the stubs in pmax/pmax/process_machdep.c to handle those requests. * Now that "struct reg" is actually used, remove the bogus #ifdef LANGUAGE_C around its definition, and redo pmax/include/reg.h so that the definitions needed by locore.S are in a separate file, pmax/include/regnum.h. * update locore.S to match.
1995-12-26from netbsd:Theo de Raadt
Update the old (4.4bsd/pmax) miniroot build scripts to put mount_ffs on a miniroot, until the new miniroot tools work on a pmax.
1995-12-26from netbsd:Theo de Raadt
Use POSIX signals. Always set FNONBLOCK on the tty. Eliminate the use of SIGIO, and some other cleanup. We don't need non-blocking mode without SIGIO.
1995-12-26put memcpy into libsaTheo de Raadt
1995-12-26properly decl panic()Theo de Raadt
1995-12-26quiet a warningTheo de Raadt
1995-12-26memcpy() in seperate file. some compilers/machine combinationsTheo de Raadt
generate memcpy() for structure assignments. bootblocks should still avoid using memcpy(), since it simply increases bootblock size.
1995-12-26Fix pasto that caused 'make distribution' to break when installing ppp.David Krause
1995-12-25Kerberos tries to install into /usr/include/ss, we better have it madeNiklas Hallqvist
at installation time.
1995-12-25As ld.so does relocation behind the compiler's back don't cacheNiklas Hallqvist
function addresses in registers.
1995-12-24repair an obvious cpp syntax errorTheo de Raadt
1995-12-23Enable kerberosIV by defaultThorsten Lockert
1995-12-23Add known good samplesThorsten Lockert
1995-12-23Honor SKEY flag from <bsd.own.mk>Thorsten Lockert
1995-12-23add configurations for all the other platformsTheo de Raadt