summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-09-24don't rely on <unistd.h> for getopt(3) extern variable declarations;Kevin Steves
for portable. ok deraadt@
2001-09-24there was a possible overrun in prev folding length fix.Michael Shalayeff
however i was lucky enough so it worked. anyway, this fixes the problem and seems to run very much alright on sparc at least.
2001-09-23Read the MAC address correctly from 630EA1-based sis(4) devices. Should fixAaron Campbell
problems people have been reporting of this nature with the SiS network devices found on some motherboards; fixes pr#2085. Patch by peter@, jason@ ok Also, some space vs tab fixes while we're here.
2001-09-23document some registers; copied from comreg.hTodd C. Miller
2001-09-23solve mtu problem a little more elegantly (ramdisk works on blade100 andJason Wright
u5 now).
2001-09-23relax permission check for private key files.Markus Friedl
2001-09-23ipxintr was missingMichael Shalayeff
2001-09-23make this compile on alphaMichael Shalayeff
2001-09-23oops, fix the after folding sizesMichael Shalayeff
2001-09-23new rijndael implementationMarkus Friedl
2001-09-23For serial console, drop into ddb on <break> if ddb.console is nonzeroTodd C. Miller
2001-09-23for cu, default to 9600 baud rate instead of 1200Peter Valchev
mention what the default is in the man page ok millert
2001-09-23add "serial" to the title to make "apropos serial" more usefulTodd C. Miller
2001-09-23Bump up the tcp half closed timeout (single FIN) to an hourMike Frantzen
2001-09-23Rename kdb_init() to db_machine_init().Miod Vallat
Fix prototypos for the early console routines. Use even more PMAP_NEW syntactic sugar. Remove some debugging stuff. Use symbolic values instead of magic numbers. Fix safepri value. Implement machdep.console_device sysctl.
2001-09-23Declare machdep.conssole_device sysctl.Miod Vallat
2001-09-23rename kdb_init() to db_machine_init().Miod Vallat
2001-09-23kernel_pmap -> pmap_kernel()Miod Vallat
2001-09-23Don't define _C_LABEL here.Miod Vallat
XXX this file should probably disappear. soon.
2001-09-23Don't redefine pmap_kernel() locally.Miod Vallat
2001-09-23pass appropriate compilation flags for sparc64. needs to be compiled PIC.Dale Rahn
both C and asm files.
2001-09-23Worst abuse of C, ever.Miod Vallat
2001-09-23add munmap syscallDale Rahn
change _rtld references to _dl to match C code. change relocation types in archdep.h to be sparc64 relocs. rtld_machine.c copied from alpha, with some modes to compile for sparc64 This is in-tree development.
2001-09-22perevent panic on timeout_add on non-existing timeout.Michael Shalayeff
happens on key press before kbd was attached and after zs has been initialized.
2001-09-22pty cleanupTheo de Raadt
2001-09-22fix binat example; ok jasoniPeter Valchev
2001-09-22supply some entropy from hereMichael Shalayeff
2001-09-22new type for video i/o entropyMichael Shalayeff
2001-09-22Do not put a space in the list of devices to associate with a consoleDale Rahn
login process. ttyCcfg was not previously initialized properly on login.
2001-09-22o kill some extra whitespaceTodd C. Miller
o remove remaining strcpy()s to avoid false positives when auditing o fix by one in a malloc() size param o fix buffer overflow in cgetnext() reported by Jouko Pynnonen o avoid needlessly setting errno to ENOMEM and when we *do* set it be sure to do so right before the return() o check snprintf() return value when building up a .db pathname and fall back to the text version if it the .db path is too long. o add a missing check for malloc() return value o kill register o memmove(), not bcopy()
2001-09-22remove debug printfTheo de Raadt
2001-09-22no need for ptys on a RAMDISKTheo de Raadt
2001-09-22Remove more old, dusty, unused defines.Miod Vallat
2001-09-22Typo: tempfile ==> tempnam.Heikki Korpela
ok millert@
2001-09-22Upon futher contemplation, the notion of unmaphints is just wrong.Dale Rahn
First the maphints code is not cleaning up after itself, by leaving a file descriptor open and trying to clean up after the dynamic linker is done loading by removing data needed during dlopen() is nonsense. the _dl_unmaphints() function and it's references have been removed. _dl_maphints() now cleans up it's file descriptor before returning. static data used later during dlopen() is left intact.
2001-09-22Do not check for ':' twice, otherwise the rpath loses the first characterDale Rahn
after the : in the list of paths.
2001-09-22The unmaphints routine should not destroy the hint mapping.Dale Rahn
Otherwise shared modules which depend on libraries cannot find them because the list of trusted directories has been lost. However we need to be careful that the unmapping of the hints frees the file descriptor, but will not free it multiple times.
2001-09-22Add gem at pciArtur Grabowski
2001-09-21complete grep clone by harding@motd.ca; everything is there, but it isTheo de Raadt
slow because libc regexp is slow. Anyone out there have the balls to sit down and optimize libc regexp?
2001-09-21syncTheo de Raadt
2001-09-21new stuffTheo de Raadt
2001-09-21configured mtu in BOTH places (grumble)Jason Wright
Also, make it a bit higher than normal (this is an ugly hack and will be removed when I figure out what this thing wants).
2001-09-21syncTheo de Raadt
2001-09-21dev/ is under the control of MAKEDEV, not mtreeTheo de Raadt
2001-09-21do not run MAKEDEVTheo de Raadt
2001-09-21openbsd style %b handlingJason Wright
2001-09-21execsigs() could modify the wrong sigacts; based on David.Arana@eng.sun.com ↵Theo de Raadt
saying he could not understand how this worked
2001-09-21another ETHERMTU + sizeof(struct ether_header) problemJason Wright
2001-09-21adapt to OpenBSD ioctl structureJason Wright
2001-09-21syncTheo de Raadt