summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-08-15fix END() labelTheo de Raadt
2002-08-15$OpenBSD$ for modules with local changesHenning Brauer
2002-08-15$OpenBSD$Henning Brauer
2002-08-15One line fix to make boot link from miod whose main NFS serverTodd C. Miller
is down at the moment.
2002-08-15syncTheo de Raadt
2002-08-13reset iir in the frame on _onfault handling, for mr.ddbMichael Shalayeff
2002-08-13hypasupadupacarefulness in spstrcpyMichael Shalayeff
2002-08-13syncMichael Shalayeff
2002-08-13forgot to fix this while was fixing copy_on_fault shitzMichael Shalayeff
2002-08-13change WI_PORTTYPE_AP -> WI_PORTTYPE_HOSTAP to match FreeBSD and NetBSD.Todd C. Miller
The reason for this is that it is possible in the future to have wi(4) be a real AP using the AP tertiary firmware. mickey@ OK
2002-08-13remove a bogus extern, move another into another scopeMichael Shalayeff
2002-08-13Update bsd_glob.c with fixes from perl 5.8.0 that are based on our glob.c.Todd C. Miller
From Solar Designer
2002-08-13By request, add imaps and pop3s (TLS/SSL imap and pop3) from IANA.Todd C. Miller
There are other TLS/SSL services we could add if desired.
2002-08-13Remove some unused prototypes, KNF.Dale Rahn
2002-08-12missing periodKevin Steves
2002-08-12Catch null pointer deref (segfault), from wilfried@Daniel Hartmeier
2002-08-12more PermitUserEnvironment; ok markus@Kevin Steves
2002-08-12Use state tree instead of separate (flat) list to find NAT proxy ports,Daniel Hartmeier
allows to use the same proxy port with different external peers. From Ryan McBride
2002-08-12Remove a large chunk of `#ifdef notyet' codeJason Wright
2002-08-12Neuter the machdep.vsyncblank sysctl, as this setting is now controlledMiod Vallat
by wsconsctl. ok art@
2002-08-12Update rom cursor position if we're the console framebufferJason Wright
2002-08-12Missing FRELE() call on writev(2) error condition; art@ ok.Aaron Campbell
2002-08-12Sync hardware list with the current state of the code.Miod Vallat
2002-08-12Manual pages update to reflect the sparc wscons changes.Miod Vallat
2002-08-12Build the wscons utilities on sparc tooMiod Vallat
2002-08-12screenblank is replaced by the wscons built-in burner facility on sparcMiod Vallat
2002-08-12Build the wscons utilities on sparc, tooMiod Vallat
2002-08-12Enable wscons code on sparc, and let kbd_sparc.c dieMiod Vallat
2002-08-12make ssh-agent setgid, disallow ptrace.Markus Friedl
2002-08-12RegenMiod Vallat
2002-08-12MAKEDEV and /etc/* changes for wscons on sparcMiod Vallat
2002-08-12Convert sparc console code from rcons and pseudo-devices to rasops and wscons.Miod Vallat
For most framebuffers it is faster. Other changes include: o 24 bit support in tcx(4) for the S24 framebuffer o accelerated cgsix(4) text console o new cgtwelve(4) driver for the GS framebuffer o improved serial driver code o better keyboard support The following framebuffers have not been tested but should work: cgfour, cgeight and cgfourteen These changes will require XF4 changes, to use Xwsfb instead of Xsun*, to be commited later today. Most of the work by me during the LSM and the week after, with code borrowed from jason@, NetBSD (new serial code), and feedback from mickey@. Work on pnozz(4) done by millert@
2002-08-12initialize part earlier in case of debugging.Federico G. Schwindt
2002-08-12!X for 3/13 (administratively prohibited); ok itojun@Kevin Steves
2002-08-12SO_DONTROUTE on receive socket is not needed; ok itojun@Kevin Steves
2002-08-12die if FD_SET overruns. (i don't have enough motive to change it to mallocJun-ichiro itojun Hagino
fd_set, rsh should be in graveyard)
2002-08-12Add a callback routine for when the cursor position is updated (this allowsJason Wright
for updating prom cursor locations).
2002-08-12Add support for REL type relocations, all currently supported archDale Rahn
use only RELA type relocations, but that could change. ok art@
2002-08-12Provide type information for a few symbols that userland needs.Artur Grabowski
vmstat -i works again.
2002-08-12Swap args to calloc(3) so they are in the correct order; art@ ok.Aaron Campbell
2002-08-12During prompts on sun4 class machines, disable local echo to preventMiod Vallat
ddoouubbllyy written characters. Modeled from the kernel's prom console routines.
2002-08-12Bump version to 2.2. Suggested by miod@Artur Grabowski
2002-08-11A good guess about what needs updating for sparc/ELF. This is notArtur Grabowski
complete, documentation is missing, but I'll let someone who knows the sets fix this properly. Those pieces at least allow me to finish a usable snapshot.
2002-08-11ELF_TOOLCHAIN on sparc.Artur Grabowski
Also, sparc/ELF needs -KPIC for ASPICFLAG just like sparc64.
2002-08-11ELF support in sparc bootblocks.Artur Grabowski
Loadfile is from alpha, but heaviliy hacked here. The build is done by building elf versions of boot and bootxx, then merging the .rodata and .text sections into .text with a horrible hack and then using objcopy to convert that into a.out. Maybe someone will want to fix installboot to deal with ELF instead, but I won't be that someone in the nearest future.
2002-08-11ELF support.Artur Grabowski
- _C_LABEL where needed - Rename syscall to _C_LABEL(_syscall) to avoid name conflict with _C_LABEL(syscall) (this one was a real nightmare to find).
2002-08-11NATIVE_EXEC_ELF for sparc and ELF reloaction types.Artur Grabowski
2002-08-11ELF support for DDB.Artur Grabowski
2002-08-11Change to ELF-style linking.Artur Grabowski
2002-08-11Two touches to make this work with ELF.Artur Grabowski
- use _C_LABEL(__cerror) and not cerror to avoid polluting the name space. - Use weak symbols for libc_r syscalls.