ĩ_16422 251 161 212 136 105 255 616 475 211 1137 394 194 190 135 337 208 169 107 362 753 189 152 145 267 167 159 154 119 530 240 161 120 223 156 209 127 121 111 199 110 109 121 107 122 208 199 326 244 129 310 444 184 118 250 132 131 208 144 171 254 171 100 140 274 242 189 160 139 221 128 200 326 330 276 122 240 115 293 175 198 271 304 499 226 238 158 168 299 239 226 268 139 216 137 237 175 473 129 317 128 108 109 105 123 128 261 155 178 129 149 329 138 158 113 148 275 108 121 106 129 108 333 166 108 326 122 105 166 278 245 140 243 155 133 127 109 425 124 108 256 316 255 157 436 175 471 226 120 219 110 130 124 172 147 502 433 119 246 173 111 135 121 221 137 155 984 191 214 209 156 181 417 316 141 193 126 173 318 230 170 236 134 244 215 108 217 131 152 253 115 140 120 116 216 121 186 111 148 468 307 136 391 258 242 167 309 216 292 176 127 488 154 218 151 201 176 187 150 161 306 111 111 386 127 127 111 136 159 244 125 124 256 152 421 223 134 129 158 122 108 108 109 294 233 368 252 143 131 683 156 211 193 K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-17T12:26:07.000000Z K 7 svn:log V 65 This commit was manufactured by cvs2svn to create tag 'libftpio'. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T12:27:55.000000Z K 7 svn:log V 118 Write numerical address instead of hostname for hostnames > UT_HOSTSIZE to keep valid information in utmp and lastlog END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T12:28:50.000000Z K 7 svn:log V 44 Whoops, give the authors all proper credit. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T12:31:02.000000Z K 7 svn:log V 13 Add LIBFTPIO END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T12:42:33.000000Z K 7 svn:log V 162 Add a feature: If the environment variable FTP_PASSIVE_MODE is defined (the convention as established by pkg_install(1)), select passive mode FTP automatically. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T12:43:04.000000Z K 7 svn:log V 523 In microtime(), use pushfl/popfl to preserve the interrupt enable flag instead of sti to it restore to its usual state. pushfl/popfl is actually faster in protected mode on Pentiums (4+3 cycles instead of 9), and using sti made it extremely inconvenient to call microtime() from fast interrupt handlers. pushfl/popfl is a couple of cycles slower than sti on 486's and a couple more cycles slower on 386's, but the relative cost of using it is not large since microtime() has to use slow i/o instructions on the old cpus. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T12:50:22.000000Z K 7 svn:log V 382 In getit(), use read_eflags()/write_eflags() to preserve the interrupt enable flag instead of enable_intr() to restore it to its usual state. getit() is only called from DELAY() so there is no point in optimising its speed (this wasn't so clear when it was extern), and using enable_intr() made it inconvenient to call DELAY() from probes that need to run with interrupts disabled. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T13:08:09.000000Z K 7 svn:log V 118 Added TIOCDCDTIMESTAMP (enable/get timestamp of last DCD rise). Reformatted FreeBSD additions in a consistent style. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T14:23:39.000000Z K 7 svn:log V 1043 Added support for TIOCDCDTIMESTAMP (enable/get timestamp of last DCD rise). Original version by John Hay. Simplified timestamp code by reading the time exactly when necessary. This may slow down the interrupt handler with extra calls to microtime(), but only in bad configurations - the input fifo should normally be disabled if timestamps on input are being used, since otherwise the timestamp won't be precisely associated with any particular input event. The interrupt handler remains slowed down by one test and branch for each input (and now DCD change) event - avoiding this is not practical yet. The simplifications also fixed: - timestamps for input sometimes being clobbered by output and modem status interrupts. - valid timestamps not being available unless the port is configured with vector siointrts. siointrts no longer exists. - compiler warnings about siointr* in some configurations. Simplified timestamp and probe code by depending on recent changes in microtime() and DELAY() to preserve the interrupt enable flag. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T14:43:54.000000Z K 7 svn:log V 301 Moved initialization of defaults for the label for the whole disk from disklabel(8) to the kernel (dsopen()). Drivers should initialize the hardware values (rpm, interleave, skews). Drivers currently don't do this, but it usually doesn't matter since rotational position stuff is normally disabled. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T14:49:02.000000Z K 7 svn:log V 100 If hostname > UT_HOSTSIZE, use its numeric address instead to keep valid entries into utmp and wtmp END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T14:59:07.000000Z K 7 svn:log V 97 If hostname > UT_HOSTSIZE, use its numerical address instead to keep valid utmp and wtmp entries END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T15:11:10.000000Z K 7 svn:log V 43 Synced with Makefile.i386: added -Wunused. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T15:28:08.000000Z K 7 svn:log V 244 Rethink and reimpliment the way RESTARTS are handled. The method I inheirited from jmz was a hopeless kludge (sorry Jean-Marc :) and handled the problem in the wrong way. ftpRestart() has now gone away and ftpGet() has grown a new parameter. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T15:46:25.000000Z K 7 svn:log V 114 Fix w -n to really show numeric addresses, close PR 402 Partially submitted by: henrich@msu.edu (Charles Henrich) END K 10 svn:author V 3 phk K 8 svn:date V 27 1996-06-17T15:59:52.000000Z K 7 svn:log V 77 Add support for ${CLEANDIRS} that will be rm -rf'ed during clean & cleandir. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T16:44:16.000000Z K 7 svn:log V 14 Localize time END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-17T16:47:43.000000Z K 7 svn:log V 269 Reduced nesting of #includes in random.h and adjusted isa/random_machdep.c to match (pc98/random_machdep.c probably requires a similar change). This is a problem area for the PC98 merge - all PC98 ifdefs in are kludges to work around incorrect layering. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 1996-06-17T16:54:03.000000Z K 7 svn:log V 658 Add a couple of #ifdef DEVFS/#endif clauses to slence the following compiler warnings which occur if you don't have 'options DEVFS' in your kernel config file: ../../kern/kern_descrip.c: In function `fildesc_drvinit': ../../kern/kern_descrip.c:1103: warning: unused variable `fd' ../../kern/kern_descrip.c: At top level: ../../kern/kern_descrip.c:1095: warning: `devfs_token_stdin' defined but not use d ../../kern/kern_descrip.c:1096: warning: `devfs_token_stdout' defined but not us ed ../../kern/kern_descrip.c:1097: warning: `devfs_token_stderr' defined but not us ed ../../kern/kern_descrip.c:1098: warning: `devfs_token_fildesc' defined but not u sed END K 10 svn:author V 5 wpaul K 8 svn:date V 27 1996-06-17T17:21:35.000000Z K 7 svn:log V 95 Stomp another compiler warning: sc_devfs_token[] should only be declared if DEVFS is #defined. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T17:44:01.000000Z K 7 svn:log V 60 Update Rod's comments on chipsets to include the Triton II. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T18:35:16.000000Z K 7 svn:log V 52 Don't try convert "-" to numeric form for -n option END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-17T18:52:53.000000Z K 7 svn:log V 172 This time, get rid of the struct copies that were really causing gcc to call memcpy.. It seems that gcc would not inline the implicit call when copying from a volatile... END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T19:05:38.000000Z K 7 svn:log V 74 Remove advertising actions requirement, they are too bothering for anyone END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T19:23:38.000000Z K 7 svn:log V 66 Fix xterm/screen/(any program using just :xxx form) compatibility END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T19:31:34.000000Z K 7 svn:log V 62 Add more items to the glossary menu and reformat it slightly. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T19:33:27.000000Z K 7 svn:log V 27 Whups! Slight adjustment. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T19:47:57.000000Z K 7 svn:log V 433 This is the `key' program from NRL's IPv6 distribution, heavily hacked up by me to remove the IPv6 stuff (fow now). I renamed it `keyadmin' since `key' was already taken by the S/Key calculator. Its purpose is to act as a command-driven interface to the `PF_KEY' socket domain, analogously to thefunction of route(8) in the `PF_ROUTE' domain. This program is believed to be exportable, since it does no actual cryptography itself. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T19:47:57.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r16449, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-17T19:47:58.000000Z K 7 svn:log V 65 This commit was manufactured by cvs2svn to create tag 'keyadmin'. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T19:49:17.000000Z K 7 svn:log V 24 Add keyadmin directory. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T20:01:05.000000Z K 7 svn:log V 126 Cross-reference addr2ascii(3) and inlcude a note about how those functions are preferred but are not widely available as yet. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T20:04:06.000000Z K 7 svn:log V 60 Correct date and add $Id$ to reflect previous modification. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-17T20:07:44.000000Z K 7 svn:log V 115 Do not print herror message, if w -n gethostname failed to be 100% compatible with any program Suggested by: peter END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T20:11:12.000000Z K 7 svn:log V 31 Cross-reference addr2ascii(3). END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-17T20:12:53.000000Z K 7 svn:log V 25 Add RCS Id and fix date. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T20:18:11.000000Z K 7 svn:log V 19 Bring in libftpio. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T20:36:57.000000Z K 7 svn:log V 106 Stamp out a potential memory leak. Make ftpChdir return the server status again - it was more convenient. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T20:54:26.000000Z K 7 svn:log V 18 Include libftpio. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T21:12:35.000000Z K 7 svn:log V 17 Merge with head. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T21:48:33.000000Z K 7 svn:log V 29 Init network at proper time. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T21:57:54.000000Z K 7 svn:log V 15 Merge (again!) END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T22:10:15.000000Z K 7 svn:log V 30 Make binary mode the default. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-17T22:14:19.000000Z K 7 svn:log V 114 Use the defined path to the card devices instead of hard-coding it's value in every file. No functional changes. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-17T22:30:30.000000Z K 7 svn:log V 105 Prepend the CIS string length define with CIS_ per the rest of the constants. Obtained from: Nomad code END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-17T22:43:36.000000Z K 7 svn:log V 231 Add a feature to procfs to allow display of the process address map with multiple entries as follows: start address, end address, resident pages in range, private pages in range, RW/RO, COW or not, (vnode/device/swap/default). END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-17T22:53:27.000000Z K 7 svn:log V 149 This file is the "meat" of the process address space capability. If you would like other things added, just ask!!! It might be pretty easy to add. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T23:04:24.000000Z K 7 svn:log V 37 ack - left in a typo. Time for bed! END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-17T23:16:04.000000Z K 7 svn:log V 217 Manage control connections a little better for the URL routines. This will do as a stop-gap until I figure out a more fault-tolerant way of having deferred closes against the control connection work without blocking. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-18T01:22:40.000000Z K 7 svn:log V 351 Removed unused #includes of and . icu.h is only used by the icu support modules and by a few drivers that know too much about the icu (most only use it to convert `n' to `IRQn'). isa.h is only used by ioconf.c and by a few drivers that know too much about isa addresses (a few have to, because config is deficient). END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-18T01:46:34.000000Z K 7 svn:log V 91 Set the program name before trying to use it. Found by: Aage Robekk END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-18T02:03:29.000000Z K 7 svn:log V 25 Merge fix from rev 1.26. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-18T05:16:00.000000Z K 7 svn:log V 155 Clean-up the new VM map procfs code, and also add support for executable format file "etype". It contains a description of the binary type for a process. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-18T05:19:45.000000Z K 7 svn:log V 38 Add the file procfs_type.c to procfs. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-18T05:22:45.000000Z K 7 svn:log V 37 Add procfs_type.c to the repository. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-18T08:36:18.000000Z K 7 svn:log V 116 Brought in fix from rev 1.18: gain a reference to the vmspace and do proper map locking to avoid a potential panic. END K 10 svn:author V 6 julian K 8 svn:date V 27 1996-06-18T10:16:29.000000Z K 7 svn:log V 49 remove some debugging printfs left in by mistake END K 10 svn:author V 6 julian K 8 svn:date V 27 1996-06-18T10:20:16.000000Z K 7 svn:log V 76 As we have appletalk protocol support we might as well show how to get it.. END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-18T15:22:26.000000Z K 7 svn:log V 157 When bringing the netkey stuff over, I forgot that I had decided to change AF_KEY into pseudo_AF_KEY, and defined PF_KEY incorrectly. Fix. Noticed by: pst END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-18T15:35:06.000000Z K 7 svn:log V 75 Add a public domain notice to these files. Requested by: jkh, 03 Sep 1995 END K 10 svn:author V 3 phk K 8 svn:date V 27 1996-06-18T16:53:59.000000Z K 7 svn:log V 9 Add tcl. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-18T16:58:44.000000Z K 7 svn:log V 47 Add new parts, kernel not booted in other case END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-18T19:52:30.000000Z K 7 svn:log V 180 - Removed dead code (if you need it you can get it out of the Repository). - Added some comments, and moved some code around to make flow more obvious. No functional changes. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-18T19:59:35.000000Z K 7 svn:log V 149 Shut up a message which now appears to be a natural consequence of RIP2 and RIP1 routeds on the same subnet and I *don't* want filling up my syslog. END K 10 svn:author V 6 julian K 8 svn:date V 27 1996-06-18T20:55:13.000000Z K 7 svn:log V 94 Obtained from: Netatalk distribution. copyright for the appletalk stack just to keep legal END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-18T21:58:55.000000Z K 7 svn:log V 67 Staticize and remove unused function. Inspired by: The Nomad code END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-18T22:54:25.000000Z K 7 svn:log V 46 Use CFLAGS += instead of setting it directly. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-18T23:21:28.000000Z K 7 svn:log V 127 Document MAXMEM option. [ Closes PR#1334, slightly modified by me ] Submitted by: James Raynard END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-18T23:50:51.000000Z K 7 svn:log V 35 Staticize and removed unused code. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-19T00:44:44.000000Z K 7 svn:log V 105 Add a better TEST script. I was surprised how much can be wrong with program test(1) or builtin test(1). END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T01:04:23.000000Z K 7 svn:log V 233 Add some unobtrusive changes to handle sources which aren't ports (SRC_ENCAPSUATION). Stick in some cd ${.CURDIR} directives which have been (benignly) missing all this time. Allow more types of targets to be selectively disabled. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T01:08:58.000000Z K 7 svn:log V 236 Use irq_tok() instead of num_tok() for IRQ's. This will allow us to use the '?' (undefined) token for stating IRQ's in the driver config line. This will allow the card to automatically select and unused IRQ when that code is enabled. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T01:25:37.000000Z K 7 svn:log V 182 Enable code that allows the daemon to select a free IRQ from the list if none is selected. The code was already there but needed to be updated to use the correct structure element. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T01:26:18.000000Z K 7 svn:log V 30 Ok, now cleandir: is correct. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T01:28:07.000000Z K 7 svn:log V 146 Remove the hardcoding of the IRQ, and instead have it determine a free IRQ. For now only enable on the 3C589 until other cards have been tested. END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-19T01:49:01.000000Z K 7 svn:log V 22 Add #include . END K 10 svn:author V 6 julian K 8 svn:date V 27 1996-06-19T01:50:10.000000Z K 7 svn:log V 197 Submitted by: archie@whistle.com gary went a little overboard on commenting out unused variables. Variables needed for ISO, LLC and NETATALK were only enabled for ISO & LLC.. so NETATALK bombed. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-19T03:39:24.000000Z K 7 svn:log V 81 Clean up vmapbuf and vunmapbuf significantly. The previous code was very rough. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T07:07:16.000000Z K 7 svn:log V 105 Spit out the a proper port path for the describe target. Submitted-By: Chuck Robey END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-19T07:20:21.000000Z K 7 svn:log V 179 Make certain that pages (especially cached pages) are pulled off the page queue immediately so that they aren't used by something else before we get to them. Submitted by: dyson END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-19T07:22:45.000000Z K 7 svn:log V 212 Add m->hold_count != 0 to the list of exceptions for not putting a page on the cache queue. The previous behavior might have allowed a page to get on the cache queue that shouldn't have been. Reviewed by: dyson END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-19T07:26:57.000000Z K 7 svn:log V 407 Fixed several serious bugs that had to do with traversing the page queues and inadvertantly stepping off the queue via a page that was previous removed from it. Also killed the potentially evil RSS limiting code in the vmdaemon - it traverses allproc which would not be consistent if the code should block for some reason (it shouldn't block, but we're not completely sure of that...). Submitted by: dyson END K 10 svn:author V 5 asami K 8 svn:date V 27 1996-06-19T09:32:11.000000Z K 7 svn:log V 131 Jean-Marc's url fetch program, with Josh MacDonald's patches and Jordan's ftpio library. Submitted by: jmz, jkh, jmacd (three-j!) END K 10 svn:author V 5 asami K 8 svn:date V 27 1996-06-19T09:32:11.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r16504, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-19T09:32:12.000000Z K 7 svn:log V 62 This commit was manufactured by cvs2svn to create tag 'fetch'. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-19T09:32:13.000000Z K 7 svn:log V 72 This commit was manufactured by cvs2svn to create branch 'RELENG_2_1_0'. END K 10 svn:author V 5 asami K 8 svn:date V 27 1996-06-19T09:33:31.000000Z K 7 svn:log V 204 The changes to go with ncftp -> fetch. Besides changing the names, standardize the variables a little, and simplify some parts because we can now trust the fetcher's return value. Reviewed by: the list END K 10 svn:author V 8 jraynard K 8 svn:date V 27 1996-06-19T09:56:30.000000Z K 7 svn:log V 141 Merged in 4.4Lite2 versions, added $Id$'s. The ktrace changes should fix the garbage error messages printed out under certain circumstances. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-19T11:20:07.000000Z K 7 svn:log V 134 Fix from Keith Bostic for bug in sed dealing with continuation lines. Submitted by: Keith Bostic via Kirk McKusick END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T15:37:52.000000Z K 7 svn:log V 174 Macro expressions should be fully parenthesized! Fix the MAXMEM definition although it would work as it was written. options "MAXMEM=(128*1024)" Suggested by: bde END K 10 svn:author V 7 wollman K 8 svn:date V 27 1996-06-19T16:24:10.000000Z K 7 svn:log V 43 Set IFF_RUNNING on the loopback interface. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T17:27:55.000000Z K 7 svn:log V 122 Print out the IRQ rather than the IRQ mask when printing out the resources allocated to the driver when DEBUG is defined. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T20:26:48.000000Z K 7 svn:log V 44 Flex version 2.5.3 from Vern Paxson at LBL. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T20:26:48.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r16514, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-19T20:26:49.000000Z K 7 svn:log V 79 This commit was manufactured by cvs2svn to create tag 'flex-vendor-flex_2_5_3'. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T20:28:57.000000Z K 7 svn:log V 380 Merge from HEAD. This is part of a multi-part commit since the SGML tools need to be merged as well for this to work, but they're in a different part of the subtree. I have to merge this because a) our -stable docs are way out of date and b) I need the "doc" distribution to appear in -stable if I'm to use a single copy of sysinstall for both. Reviewers of this MOST welcome! END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T20:36:35.000000Z K 7 svn:log V 37 Add a newline - it seems to want it. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T20:48:06.000000Z K 7 svn:log V 223 Finish the import and merge in FreeBSD specific changes. Add a 'bootstrap' target which *must* be run before building the new version, since the new scanner relies on the current version of flex to build itself otherwise. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T20:48:48.000000Z K 7 svn:log V 35 Added lex to the bootstrap target. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T20:57:04.000000Z K 7 svn:log V 16 Merge from HEAD END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T21:13:05.000000Z K 7 svn:log V 17 Nuke this thing. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T21:13:45.000000Z K 7 svn:log V 13 Remove ncftp END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T21:18:24.000000Z K 7 svn:log V 31 Remove libforms - it's unused. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-19T21:19:37.000000Z K 7 svn:log V 36 Remove libforms, it was never used. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T21:19:56.000000Z K 7 svn:log V 167 Don't try to do a 'make bootstrap all install' in one commend. Break it into two make commands so that make will recognize that it doesn't need to buid scan.c w/lex. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T21:41:56.000000Z K 7 svn:log V 62 rpc.yppasswd doesn't exist in -stable. Use yppasswd instead. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T22:25:32.000000Z K 7 svn:log V 85 Whoops, forgot one FreeBSD specific change necessary for the lex .mk macros to work. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-19T22:41:44.000000Z K 7 svn:log V 36 No need for this in -stable either. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-20T01:47:21.000000Z K 7 svn:log V 58 Minor KNF formatting change to vmapbuf() and vunmapbuf(). END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-20T01:55:54.000000Z K 7 svn:log V 237 Brought in the rewritten versions of vmapbuf/vunmapbuf from main branch. Not only is the code higher quality, but it also fixes a rounding/off-by- one bug that caused a panic when doing physio() with DIAGNOSTIC. This fix closes PR#1195. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-20T08:07:30.000000Z K 7 svn:log V 47 Properly account for non-page aligned buffers. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-20T08:08:29.000000Z K 7 svn:log V 67 Brough in fix from rev 1.66: account for non-page aligned buffers. END K 10 svn:author V 4 adam K 8 svn:date V 27 1996-06-20T13:38:15.000000Z K 7 svn:log V 20 libforms is no more END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:03:52.000000Z K 7 svn:log V 56 Get rid of libforms (didn't notice the reference here). END K 10 svn:author V 5 jmacd K 8 svn:date V 27 1996-06-20T14:13:15.000000Z K 7 svn:log V 180 I hate to read a man page that almost has useful information but falls a little short. I added a comment on the null termination of struct group's gr_mem field. Reviewed by: jkh END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:15:44.000000Z K 7 svn:log V 16 Merge from HEAD END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:21:05.000000Z K 7 svn:log V 29 Merge from HEAD - nuke ncftp END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:21:31.000000Z K 7 svn:log V 14 Bye bye ncftp END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:30:56.000000Z K 7 svn:log V 37 Add fetch, which was just tagged in. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T14:35:33.000000Z K 7 svn:log V 16 Merge from HEAD END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-20T15:41:23.000000Z K 7 svn:log V 239 Put the 'debug' messages of the type: /kernel: in_rtqtimo: adjusted rtq_reallyold to 1066 /kernel: in_rtqtimo: adjusted rtq_reallyold to 710 inside of #ifdef DIAGNOSTIC to avoid the support questions from folks asking what this means. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T15:49:54.000000Z K 7 svn:log V 74 Make certain small things more consistent with the other stdio man pages. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T15:52:04.000000Z K 7 svn:log V 16 Sync with HEAD. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T17:17:03.000000Z K 7 svn:log V 233 Update net.inet.ip.forwarding example to give right value. Indicate that gateway in /etc/sysconfig is *really* the correct way if you have an /etc/sysconfig file. Other small tweaks. Requested by: Guy Helmer END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T17:27:55.000000Z K 7 svn:log V 30 Don't try to build config.new END K 10 svn:author V 4 adam K 8 svn:date V 27 1996-06-20T17:47:24.000000Z K 7 svn:log V 12 added fetch END K 10 svn:author V 6 fenner K 8 svn:date V 27 1996-06-20T17:52:32.000000Z K 7 svn:log V 71 Remove one last rip_output from inetsw (gpalmer missed it in rev 1.30) END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T18:33:55.000000Z K 7 svn:log V 185 Make pkg_install understand and use libftpio instead of its own copies of the ftp support routines. Also some cosmetic and minor bug fixes I've been meaning to incorporate for awhile. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T18:47:04.000000Z K 7 svn:log V 152 Add pre-world and post-world hooks so that people can do site specific cleanup or preinitializion of /usr/src before and after the world target is run. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T18:51:28.000000Z K 7 svn:log V 48 Whoops - I made `make clean' chatty by mistake. END K 10 svn:author V 6 julian K 8 svn:date V 27 1996-06-20T19:19:29.000000Z K 7 svn:log V 147 Submitted by: archie@whistle.com This program should COMPLAIN about uids > 65K but not abort.. they are after all legal, and some of us NEED them! END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T19:45:23.000000Z K 7 svn:log V 63 Try to get some of the most egregiously old cruft out of here. END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-20T21:06:53.000000Z K 7 svn:log V 40 Don't un-necessarily include varargs.h. END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-20T21:21:01.000000Z K 7 svn:log V 33 Remove $log's. These are a pain. END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-20T21:31:46.000000Z K 7 svn:log V 15 Remove $log's. END K 10 svn:author V 6 fenner K 8 svn:date V 27 1996-06-20T22:53:08.000000Z K 7 svn:log V 329 Use the route that's guaranteed to exist when picking a source address for ARP requests. The NetBSD version of this patch (see NetBSD PR kern/2381) has this change already. This should close our PR kern/1140 . Although it's not quite what he submitted, I got the idea from him so Submitted by: Jin Guojun END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T23:52:45.000000Z K 7 svn:log V 32 Handle the `distribute' target. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-20T23:53:28.000000Z K 7 svn:log V 16 Merge from HEAD END K 10 svn:author V 8 jraynard K 8 svn:date V 27 1996-06-21T01:12:18.000000Z K 7 svn:log V 158 Change brought over from HEAD. Merged in 4.4Lite2 version, added $Id$'s. This should fix the garbage error messages printed out under certain circumstances. END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-21T02:39:19.000000Z K 7 svn:log V 222 Code clean up. Prototypes, parentheses around assignments used in if statements, #if 0 some unused code, use off_t in calls to read/ write_disk, fix a printf format, remove unused variables, and #include necessary files. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-21T05:39:22.000000Z K 7 svn:log V 160 Improve algorithm for page hash queue. It was previously about as bad as it could be. This algorithm appears to improve fork performance (barely) measurably. END K 10 svn:author V 2 dg K 8 svn:date V 27 1996-06-21T06:06:57.000000Z K 7 svn:log V 66 Brought in fix from rev 1.5: handle continuation lines correctly. END K 10 svn:author V 3 sos K 8 svn:date V 27 1996-06-21T07:19:18.000000Z K 7 svn:log V 343 Some news for syscons (long overdue): Real support for a Textmode mousecursor, works by reprogramming the charset. Together with this support for cut&paste in text mode. To use it a userland daemon is needed (moused), which provides the interface to the various mice protokols. Bug fixes here and there, all known PR's closed by this update. END K 10 svn:author V 3 sos K 8 svn:date V 27 1996-06-21T07:20:13.000000Z K 7 svn:log V 83 Added new -m option, that enable / disables the mousepointer on a textmode screen. END K 10 svn:author V 3 sos K 8 svn:date V 27 1996-06-21T09:24:09.000000Z K 7 svn:log V 378 Moused is the daemon that provides the connection between the cut&paste functionality in syscons and the real mouse hardware. If moused is run one can switch on/off the mousepointer with vidcontrol -m on/off. There is no manpage yet, but a fairly descriptive usage message.... Reviewed by:sos Submitted by: Michael Smith Obtained from:Some of the mouselogic comes from XFree86 END K 10 svn:author V 3 sos K 8 svn:date V 27 1996-06-21T11:31:09.000000Z K 7 svn:log V 133 Oops, fix a bug that caused updates to the screen to happen, without anything actually changed, in this case the mousepointer logic. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-21T13:12:09.000000Z K 7 svn:log V 28 Merge 2 bug fixes from HEAD END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-21T13:16:37.000000Z K 7 svn:log V 126 Add John Hay to list of developers and add him as an entity. I don't know how this got overlooked so long! :-( Sorry, John! END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-21T17:32:26.000000Z K 7 svn:log V 16 Merge with HEAD END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-21T18:39:54.000000Z K 7 svn:log V 36 Make this makefile work with STABLE END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-21T18:48:43.000000Z K 7 svn:log V 30 Oops - forgot to remove these END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-21T18:49:36.000000Z K 7 svn:log V 79 Close security holes and restore suid bit Restore writting cat's functionality END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-21T19:41:35.000000Z K 7 svn:log V 53 Remove reference to eBones/des, as this is now gone. END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-21T21:35:01.000000Z K 7 svn:log V 407 When writing the settings for stop bits and output hardware flow control, things tend to work better if you write the settings to the correct register.. (*blush*). This subtle bug has been haunting me for ages, and will solve a few problems that have been reported to me. Also, take a shot at fixing the serial BREAK processing, what was there before never really worked. (There is a PR on this I think) END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-21T21:45:58.000000Z K 7 svn:log V 338 Set the rmx.rmx_expire to 0 when creating fake ethernet addresses for the broadcast and multicast routes, otherwise they will be expired by arptimeout after a few minutes, reverting to " (incomplete)". This makes the work done by rev 1.27 stay around until the route itself is deleted. This is mainly cosmetic for 'arp' and 'netstat -r'. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-21T23:18:44.000000Z K 7 svn:log V 25 Merge from HEAD EOF bug END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-22T00:54:36.000000Z K 7 svn:log V 152 Flush out the rules before adding entries. This prevents duplicate rules from appearing when switching back and forth from single to multi-user modes. END K 10 svn:author V 8 jraynard K 8 svn:date V 27 1996-06-22T02:15:28.000000Z K 7 svn:log V 76 Document the fact that it only works if the trace record is a regular file. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-22T05:47:46.000000Z K 7 svn:log V 18 Update my pgp key END K 10 svn:author V 3 phk K 8 svn:date V 27 1996-06-22T06:01:57.000000Z K 7 svn:log V 43 Add man-page section 'n' and LIBTCL macro. END K 10 svn:author V 3 phk K 8 svn:date V 27 1996-06-22T06:02:47.000000Z K 7 svn:log V 29 Add tcl related directories. END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T06:59:25.000000Z K 7 svn:log V 124 Try to make it a bit clearer that our send-pr comes pre-configured with a submitter-id, and that a new one is not required. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-22T08:05:11.000000Z K 7 svn:log V 44 Do not produce empty cat file in debug mode END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T09:45:18.000000Z K 7 svn:log V 59 Bring in change from rev. 1.26: keep in/out byte counters. END K 10 svn:author V 8 jraynard K 8 svn:date V 27 1996-06-22T10:34:15.000000Z K 7 svn:log V 886 Suggested by: Bruce Evans, Jeffrey Hsu, Gary Palmer Added $Id$'s to files that were lacking them (gpalmer), made some cosmetic changes to conform to style guidelines (bde) and checked against NetBSD and Lite2 to remove unnecessary divergences (hsu, bde) One last code cleanup:- Removed spurious casts in fseek.c and stdio.c. Added missing function argument in fwalk.c. Added missing header include in flags.c and rget.c. Put in casts where int's were being passed as size_t's. Put in missing prototypes for static functions. Changed second args of __sflags() inflags.c and writehook() in vasprintf.c from char * to const char * to conform to prototypes. This directory now compiles with no warnings with -Wall under gcc-2.6.3 and with considerably less warnings than before with the ultra-pedantic script I used for testing. (Most of the remaining ones are due to const poisoning). END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-22T13:03:56.000000Z K 7 svn:log V 97 Fix the major number of the `od' driver. Submitted by: akiyama@kme.mei.co.jp (Shunsuke Akiyama) END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-22T13:05:20.000000Z K 7 svn:log V 119 Add a few hints about the cleaning policy of /tmp, including an example (commented out) for how to purge it regularly. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-22T14:57:55.000000Z K 7 svn:log V 114 Dump the timeout for st_erase(). Fixes PR # kern/1341: Bug fix for SCSI tape Submitted by: tundra@tundrware.com END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-22T15:00:00.000000Z K 7 svn:log V 62 Merge the fix from rev 1.69: bump the timeout for st_erase(). END K 10 svn:author V 3 pst K 8 svn:date V 27 1996-06-22T17:58:44.000000Z K 7 svn:log V 89 Ask CVS to run in quiet mode, which makes it easier to see what the update actually did. END K 10 svn:author V 8 jraynard K 8 svn:date V 27 1996-06-22T18:05:15.000000Z K 7 svn:log V 319 Submitted by: Wolfram Schneider Document the fact that the tracefile argument must lead to a regular file. Also took the opportunity to remove the spurious "Errors" entry relating to filenames with the high-order bit set and add $Id$. (More of the same to follow if there are no objections). END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-22T20:16:57.000000Z K 7 svn:log V 223 Address Andrey's complaints: 1. Always use file modtime, and if that's not usable then default to current time. 2. Allow HTTP_TIMEOUT to be set as an environment variable to override default. 3. Handle SIGTERM. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-22T21:10:19.000000Z K 7 svn:log V 48 Back out security changes until pst review them END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T21:20:56.000000Z K 7 svn:log V 97 Correct spelling errors (i before e except after c :-) ) Submitted by: James Raynard END K 10 svn:author V 3 pst K 8 svn:date V 27 1996-06-22T21:34:03.000000Z K 7 svn:log V 34 Add /var/log/ppp.log from iij ppp END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T21:34:40.000000Z K 7 svn:log V 77 Merge in change from rev 1.213. Fix spelling errors. Submitted by: jraynard END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-22T21:42:14.000000Z K 7 svn:log V 225 Clean up more bogons: 1. Add a copyright at the top. 2. Make passive and binary modes work with new ftpio semantics. 3. Add a `mirror' (-m) flag which only copies the remote file if it's not the same size or is newer. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-22T21:43:56.000000Z K 7 svn:log V 137 Fix a bug in the way binary/ascii settings were being done. New ftpAscii() call sets connection to ascii as counterpart to ftpBinary(). END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-22T23:24:13.000000Z K 7 svn:log V 78 Adjust the copyright to match reality, remove printing of gratuitous newline. END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T23:46:00.000000Z K 7 svn:log V 139 Specify that daemon(3) returns int, and standardise the phrasing in the ERRORS section a bit, as well as now specifying the return status. END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-22T23:52:34.000000Z K 7 svn:log V 38 Merge in man page fixes from the head END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-23T00:05:04.000000Z K 7 svn:log V 149 Fix a couple of bogus casts to off_t that caused dumpfs to lseek negative on filesystems > 2GB (which causes the disk slice code to call Debugger!!) END K 10 svn:author V 7 gpalmer K 8 svn:date V 27 1996-06-23T00:51:05.000000Z K 7 svn:log V 118 Remove an un-necessary call to microtime() to set if_lastchange as it is set in the call to if_down in the line above END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-23T01:44:07.000000Z K 7 svn:log V 16 Merge with HEAD END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-23T04:14:43.000000Z K 7 svn:log V 122 Bring in rev 1.41; fix timeout estimation with a B0 hangup. Bring in rev 1.46; fix output flow control and break sending. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-23T07:52:27.000000Z K 7 svn:log V 39 Merge various useful things from HEAD. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T10:38:15.000000Z K 7 svn:log V 60 Removed rubbish that stopped usr.bin/ncftp from going away. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T11:47:09.000000Z K 7 svn:log V 158 Merge my changes from Mar 9, 1996. Basically, this makes talk able to work on multi-homed hosts. As a side effect, this was a major cleanup of the sources. END K 10 svn:author V 3 sos K 8 svn:date V 27 1996-06-23T12:13:02.000000Z K 7 svn:log V 23 Add moused to targets. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T12:59:18.000000Z K 7 svn:log V 48 Made strip failures fatal. This fixes PR 1328. END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-23T13:08:41.000000Z K 7 svn:log V 26 kerberosIV/des.h -> des.h END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T13:11:59.000000Z K 7 svn:log V 24 Removed -g from CFLAGS. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T13:28:04.000000Z K 7 svn:log V 123 Describe MAXMEM better. Enable it by default. (It's a positive option. Only negative options in LINT should be enabled.) END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T13:31:20.000000Z K 7 svn:log V 29 Disabled unusable union lkm. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T13:47:31.000000Z K 7 svn:log V 94 Disabled unusable union lkm as in -current and rearranged comments to get closer to -current. END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-23T14:07:40.000000Z K 7 svn:log V 17 Merge with HEAD. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:24:57.000000Z K 7 svn:log V 56 Brought in fix from rev.1.8: made strip failures fatal. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:28:02.000000Z K 7 svn:log V 375 Use IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicate LKM'ness. ACTUALLY_LKM_NOT_KERNEL is supposed to be so ugly that it only gets used until goes away. bsd.kmod.mk should define a better-named general macro for this. Some places use PSEUDO_LKM. This is another bad name. Makefile: Added IPFIREWALL_VERBOSE_LIMIT option (commented out). END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:41:55.000000Z K 7 svn:log V 214 Don't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existing definition of QCAM_MODULE for everything involving LKM'ness. Makefile: Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:43:55.000000Z K 7 svn:log V 44 Finished converting ipfw to use opt_ipfw.h. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T14:48:39.000000Z K 7 svn:log V 296 Merge the worm driver into -stable, untested, but eyeball-reviewed. The existing worm driver there was entirely useless, you couldn't do anything with it. Thus i believe that shipping a beta-quality driver is still better. (The only other option would have been to remove it from the branch.) END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:52:20.000000Z K 7 svn:log V 165 Don't (re)define ACTUALLY_LKM_NOT_KERNEL. It wasn't even used by the joy driver proper. Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:56:04.000000Z K 7 svn:log V 149 Don't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS. Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T14:58:14.000000Z K 7 svn:log V 75 Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T14:58:30.000000Z K 7 svn:log V 214 Add wormcontrol, now that worm(4) has been updated. (The actual import of wormcontrol(8) into the branch is done behind the scene by a cvs tag operation, you'll only see a commit message for the Makefile change.) END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T15:02:02.000000Z K 7 svn:log V 123 Forward-declare a struct tag so that this doesn't depend on a side effect of indirectly including . END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T15:05:09.000000Z K 7 svn:log V 197 Merge scsiformat from HEAD, and enable it in the Makefile. The old (4.4BSD) version was defunct, while Peter Dufault's wrapper for scsi(8) works well, so there's no reason to hide it uninstalled. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-23T16:34:44.000000Z K 7 svn:log V 84 Add some examples on burning CDRs - I figured it was about time to document it! :-) END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T16:50:11.000000Z K 7 svn:log V 33 Ooops, forgot to update worm(4). END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T17:05:10.000000Z K 7 svn:log V 395 Run the headers through cpp -dM to find the #defines. The direct search has been broken at least since 4.4Lite moved most of the #defines out of . This should be done better. Only a few headers are searched. Added some #includes so that ioctl.c compiles. The networking headers have a maze of undocumented interdependencies and ioctl.c now actually supports networking ioctls. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T17:08:11.000000Z K 7 svn:log V 62 Removed unused #include. Linux doesn't support SCO consoles. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T17:12:05.000000Z K 7 svn:log V 125 Moved declarations of static functions to the correct file. This fixes hundreds of warnings from -Wunused in lkm/syscons/*. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T17:19:25.000000Z K 7 svn:log V 59 Don't truncate minor or major numbers in the nfsv3 client. END K 10 svn:author V 3 bde K 8 svn:date V 27 1996-06-23T17:40:47.000000Z K 7 svn:log V 108 Unstaticize psratio and staticize profprocs. psratio needs to be exported to trap.c to fix user profiling. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T18:27:12.000000Z K 7 svn:log V 82 Update the BUGS section, now that we've got some experience in using this driver. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-23T18:33:04.000000Z K 7 svn:log V 93 Update the bugs section. Mostly merged from HEAD, with one addition that is 2.1.X-specific. END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-23T19:41:34.000000Z K 7 svn:log V 57 Describe the way how to add OPL for PAS without conflict END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-23T19:46:46.000000Z K 7 svn:log V 68 Oops, forget the fact that LINT compiles (fixing previos PAS commi) END K 10 svn:author V 5 gibbs K 8 svn:date V 27 1996-06-23T20:02:37.000000Z K 7 svn:log V 211 Fix problem with scb flag handing that crept in with the SCB paging support. This only affected userland initiated device resets (using the reset command from cdplay for instance). Convert some spaces to tabs. END K 10 svn:author V 5 gibbs K 8 svn:date V 27 1996-06-23T20:13:13.000000Z K 7 svn:log V 17 Merge with HEAD. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-23T20:35:22.000000Z K 7 svn:log V 17 Merge from HEAD. END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-23T20:47:51.000000Z K 7 svn:log V 292 Fix address mask calculation when using ':' syntax. Allow a mask of /0 to have the desired effect. Normalize IP addresses that won't match a given mask (i.e. 1.2.3.4/24 becomes 1.2.3.0/24). Submitted by R. Bezuidenhout Code formatting and "frag" display fixes. END K 10 svn:author V 4 alex K 8 svn:date V 27 1996-06-23T20:51:37.000000Z K 7 svn:log V 34 Merge fixes from HEAD (rev 1.27). END K 10 svn:author V 4 ache K 8 svn:date V 27 1996-06-23T20:54:42.000000Z K 7 svn:log V 34 Add moused hooks (OFF by default) END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-23T22:03:56.000000Z K 7 svn:log V 17 Merge from HEAD. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-23T22:10:29.000000Z K 7 svn:log V 42 Merge from HEAD install forgotten INDEX.* END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 1996-06-23T22:10:30.000000Z K 7 svn:log V 63 This commit was manufactured by cvs2svn to create branch 'CVS'. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 1996-06-23T22:44:06.000000Z K 7 svn:log V 149 Whoops: had a couple of hardcoded instances of '/var/yp/' that shouldn't have been there. Fixed to use yp_dir, which can be set on the command line. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-23T23:09:12.000000Z K 7 svn:log V 31 Merge from HEAD: add 05.sysman END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-23T23:15:11.000000Z K 7 svn:log V 30 add hosts.equiv.5 hosts.lpd.5 END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-23T23:24:36.000000Z K 7 svn:log V 161 Bring the two Stallion serial card drivers (both cd1400 and intelligent) into the 2.1 branch from -current. The other files have been tagged. OK'ed by: davidg END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-23T23:41:39.000000Z K 7 svn:log V 58 Add the stallion subdir, now that it's on the 2.1 branch. END K 10 svn:author V 5 peter K 8 svn:date V 27 1996-06-24T00:13:50.000000Z K 7 svn:log V 326 Selected fixes from HEAD, including: - Show the "B" flag on blackhole routes (as documented) - fixes from 4.4Lite-2 to make the dns reverse-lookups a little less broken in the face of subnets (and show network route size) - more sensible trimming of the local host's domain name. - more readable '-w' statistics output END K 10 svn:author V 3 jmz K 8 svn:date V 27 1996-06-24T01:03:05.000000Z K 7 svn:log V 130 Do not exit if ftpGetSize() returns a value < 0. You may well try to fetch a whole .tar.gz on a server running wu-ftp. END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-24T01:21:58.000000Z K 7 svn:log V 40 update E-Mail address of Julian Stacey END K 10 svn:author V 5 wosch K 8 svn:date V 27 1996-06-24T01:28:56.000000Z K 7 svn:log V 35 update Istanbul Submitted by: jhs END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T02:19:27.000000Z K 7 svn:log V 66 Adjust the reference to ftpBinary() in the (unused) TCL wrappers. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T02:22:15.000000Z K 7 svn:log V 30 Adjust docs to match reality. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T02:29:29.000000Z K 7 svn:log V 16 Merge from HEAD END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T02:30:37.000000Z K 7 svn:log V 16 Merge with HEAD END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T02:40:24.000000Z K 7 svn:log V 17 Merge from HEAD. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T04:26:21.000000Z K 7 svn:log V 201 Bring in my changes for removing the pestilent obj links (unless you really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. END K 10 svn:author V 5 dyson K 8 svn:date V 27 1996-06-24T04:30:24.000000Z K 7 svn:log V 138 Remove RSS limiting until I rewrite the code to be non-recursive. The code can overrun the kernel stack under very stressful conditions. END K 10 svn:author V 5 gibbs K 8 svn:date V 27 1996-06-24T04:54:32.000000Z K 7 svn:log V 273 Ensure that media protection is released before attempting to eject the media in all cases. Remove SCSI_2_MAX_DENSITY_CODE definition and rely on the device to tell us if we attempt an invalid setting. Closes PR 1245. Submitted by: fredriks@mcs.com a few changes by me. END K 10 svn:author V 5 joerg K 8 svn:date V 27 1996-06-24T14:30:32.000000Z K 7 svn:log V 157 Remove some old and unused cruft so that `swap generic' kernels will actually link again. (I wonder whether i'm the only one who's ever been using them...) END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T15:28:12.000000Z K 7 svn:log V 51 Uh, this is a shell script, not a perl script. :-) END K 10 svn:author V 4 nate K 8 svn:date V 27 1996-06-24T16:50:39.000000Z K 7 svn:log V 38 Add the (commented out) OBJLINK hook. END K 10 svn:author V 5 wpaul K 8 svn:date V 27 1996-06-24T17:18:04.000000Z K 7 svn:log V 588 Merge in a couple of fixes from the HEAD: pw_yp.c: - Fix silly bug in copy_yp_pass(). - In yp_submit(), use the password from the pw struct passed in as an argument instead of calling getpwnam() to find it: for one thing this is unnecessary since we already have the crypted password, and for another it cause us to pick the wrong password in the event that the user exists both in the local database and in YP. edit.c: - Change shell restriction policy: if the shell field isn't restricted and it's valid, or if the the user is root, allow the shell field to be edited. END K 10 svn:author V 5 markm K 8 svn:date V 27 1996-06-24T18:19:22.000000Z K 7 svn:log V 62 Merge with HEAD - create libdescrypt. Pointed out by: rgrimes END K 10 svn:author V 3 pst K 8 svn:date V 27 1996-06-24T19:00:28.000000Z K 7 svn:log V 118 Start vi.recovery processing after ldconfig. Closes misc/1346 which has bitten me more times than I care to remember. END K 10 svn:author V 3 jkh K 8 svn:date V 27 1996-06-24T21:33:23.000000Z K 7 svn:log V 100 Add default targets for cleandepend and objlink. Submitted by: Michael Hancock END