Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-24 | Sync with m4.common macro usage. | Miod Vallat | |
Describe floppyB. Mention that first floppy has no 264 support, while the other one has no non-264 support. | |||
2001-09-24 | Some tweaks: | Miod Vallat | |
+ removeOpenBSDfloppyB macro, as i386 and alpha need different descriptions for it. + OpenBSDbase and OpenBSDcomp take an optional first parameter to tell if the architecture has shared libraries or not. If it has no shared libraries, don't mention them in the descriptions. | |||
2001-09-24 | One more powerpc->macppc conversion issue. | Miod Vallat | |
2001-09-24 | The 'newgrp' alias is explicitly disabled in our ksh, so do not mention | Camiel Dobbelaar | |
it in the manpage. ok millert@ | |||
2001-09-24 | Do not document stuff that will be automatic. | Camiel Dobbelaar | |
From deraadt@ | |||
2001-09-24 | Use setboolean for -h flag instead of casting things by hand. | Todd C. Miller | |
2001-09-24 | dl_data is at the start of the stack, not after env. load loff. | Artur Grabowski | |
Now _dl_boot starts correctly. | |||
2001-09-24 | Reset the error return value if the cached TDB matches the | Angelos D. Keromytis | |
policy. Pointed out by jdmcbride@iol.ie | |||
2001-09-24 | Use splimp instead of splnet in some places. | Artur Grabowski | |
I don't understand why, but it helps stability a lot. | |||
2001-09-24 | profiling now works | Artur Grabowski | |
2001-09-24 | support sparc64 | Artur Grabowski | |
2001-09-24 | Kill accidentally duplicated option inet6. This option has no | Heikki Korpela | |
meaning on OpenBSD. itojun@ ok | |||
2001-09-24 | Rename __minbrk to minbrk to allow gmon.c to link correctly. | Artur Grabowski | |
XXX - The fix should be the other way around - make all other archs match sparc64. | |||
2001-09-24 | Force memory model to medlow for profiling. | Artur Grabowski | |
espie@ ok. | |||
2001-09-24 | Somewhat more extensive detail | Marc Espie | |
2001-09-24 | document that PT101 should more or less work... | Marc Espie | |
2001-09-24 | Better wording | Marc Espie | |
2001-09-24 | get rid of kvtop, not that it matters that much | Michael Shalayeff | |
2001-09-24 | don't rely on <unistd.h> for getopt(3) extern variable declarations; | Kevin Steves | |
for portable. ok deraadt@ | |||
2001-09-24 | there 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-23 | Read the MAC address correctly from 630EA1-based sis(4) devices. Should fix | Aaron 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-23 | document some registers; copied from comreg.h | Todd C. Miller | |
2001-09-23 | solve mtu problem a little more elegantly (ramdisk works on blade100 and | Jason Wright | |
u5 now). | |||
2001-09-23 | relax permission check for private key files. | Markus Friedl | |
2001-09-23 | ipxintr was missing | Michael Shalayeff | |
2001-09-23 | make this compile on alpha | Michael Shalayeff | |
2001-09-23 | oops, fix the after folding sizes | Michael Shalayeff | |
2001-09-23 | new rijndael implementation | Markus Friedl | |
2001-09-23 | For serial console, drop into ddb on <break> if ddb.console is nonzero | Todd C. Miller | |
2001-09-23 | for cu, default to 9600 baud rate instead of 1200 | Peter Valchev | |
mention what the default is in the man page ok millert | |||
2001-09-23 | add "serial" to the title to make "apropos serial" more useful | Todd C. Miller | |
2001-09-23 | Bump up the tcp half closed timeout (single FIN) to an hour | Mike Frantzen | |
2001-09-23 | Rename 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-23 | Declare machdep.conssole_device sysctl. | Miod Vallat | |
2001-09-23 | rename kdb_init() to db_machine_init(). | Miod Vallat | |
2001-09-23 | kernel_pmap -> pmap_kernel() | Miod Vallat | |
2001-09-23 | Don't define _C_LABEL here. | Miod Vallat | |
XXX this file should probably disappear. soon. | |||
2001-09-23 | Don't redefine pmap_kernel() locally. | Miod Vallat | |
2001-09-23 | pass appropriate compilation flags for sparc64. needs to be compiled PIC. | Dale Rahn | |
both C and asm files. | |||
2001-09-23 | Worst abuse of C, ever. | Miod Vallat | |
2001-09-23 | add munmap syscall | Dale 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-22 | perevent 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-22 | pty cleanup | Theo de Raadt | |
2001-09-22 | fix binat example; ok jasoni | Peter Valchev | |
2001-09-22 | supply some entropy from here | Michael Shalayeff | |
2001-09-22 | new type for video i/o entropy | Michael Shalayeff | |
2001-09-22 | Do not put a space in the list of devices to associate with a console | Dale Rahn | |
login process. ttyCcfg was not previously initialized properly on login. | |||
2001-09-22 | o kill some extra whitespace | Todd 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-22 | remove debug printf | Theo de Raadt | |
2001-09-22 | no need for ptys on a RAMDISK | Theo de Raadt | |