ViewVC Help
View Directory | Revision Log | View Changeset | Root Listing
root/src/trunk
Revision 340 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:22:39 2006 UTC (17 years, 4 months ago) by laffer1
Diff to previous 339 , to selected 94
Consistently use if_printf() only in interface methods: if_start, if_ioctl, if_watchdog, etc or in functions that are used by these methods only.  In all other cases, device_printf should be used.

This also fixes several panics when if_printf() is called before softc->ifp was initialized.

Revision 339 - Directory Listing - [select for diffs]
Modified Thu Dec 21 16:18:09 2006 UTC (17 years, 4 months ago) by laffer1
Diff to previous 338 , to selected 94
IF_LLADDR does not necessarily return aligned memory addresses.  Since accessing ID registers in rt181x9 needs 32bit register access and RL_IDR6/RL_IDR7 registers are reserved registers bzero() is needed before copying the ethernet address.
This fixes a bug in Sparc64

Obtained from FreeBSD, yongari.

Revision 338 - Directory Listing - [select for diffs]
Modified Mon Dec 18 23:50:50 2006 UTC (17 years, 4 months ago) by laffer1
Diff to previous 337 , to selected 94
As discussed on freebsd-threads@freebsd.org, a libpthread bug exists that this patch by Peter Edwards Corrects.

Here is a summary:

I've a problem when a process uses:
       libpthread
       detached threads
       mixed bound/unbound threads
       suspended threads  (a la pthread_resume_np())

whereby some newly created suspended threads don't get scheduled.
I think I've tracked it down, so if someone could review the
reasoning, I'd be grateful.

Newly launched threads have a "struct pthread" that may be allocated
from a freelist of GCed threads. Apparently, when detached threads
enter the GCed list, they can still have the "active" flag set on
them. Later, this causes problems when this thread is recycled and
resumed, because _thr_setrunnable_unlocked() doesn't add it to a
run queue.

thr_cleanup can be called either from the bound-threads scheduler,
or the unbound scheduler. One callsite clears "active", "needswitchout",
and "lock_switch" to zero before the call. The other callsite just
clears "check_pending". I think these flags are all either bound-thread
or unbound-thread specific, and that there was an unintended
assumption that the thread would remain with the same "boundedness"
after being recycled, which isn't neccessarily the case. (Or another
way - the idea was that there was no need to clear the "active"
flag on a bound thread, as its only used for unbound threads, but
a GCed bound thread might be recycled into an unbound thread)

Given that, it seems correct to clean up the thread the same way
for both cases, and just move that code into thr_cleanup.

Revision 337 - Directory Listing - [select for diffs]
Modified Wed Dec 6 19:43:37 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 336 , to selected 94
Should be >= and not >

Revision 336 - Directory Listing - [select for diffs]
Modified Thu Nov 30 04:09:58 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 335 , to selected 94
Minor cleanup

Revision 335 - Directory Listing - [select for diffs]
Modified Thu Nov 30 03:58:23 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 334 , to selected 94
Fix setmode error handling.

Revision 334 - Directory Listing - [select for diffs]
Modified Thu Nov 30 03:54:25 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 333 , to selected 94
Minor cleanups to sync.  $MidnightBSD$

Cleaned up source so that it would be more portable and inline with NetBSD.

Revision 333 - Directory Listing - [select for diffs]
Modified Wed Nov 29 17:09:59 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 332 , to selected 94
Minor adjustment on the value for "short filename" situations to match freebsd's behavior.  Using -1 makes more sense.

Revision 332 - Directory Listing - [select for diffs]
Modified Wed Nov 29 04:31:24 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 331 , to selected 94
The original patch falsely assumed time_t.

Revision 331 - Directory Listing - [select for diffs]
Modified Wed Nov 29 03:04:33 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 330 , to selected 94
Correct file creation timestamp.

Revision 330 - Directory Listing - [select for diffs]
Modified Fri Nov 24 19:41:57 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 329 , to selected 94
Check that -w width is not above maximum.  Use DWIDTH constant instead of a hard coded constant.

Reported by Gruzicki Wlodek on Bugtraq.
Obtained from FreeBSD, NetBSD, and OpenBSD.

Revision 329 - Directory Listing - [select for diffs]
Modified Thu Nov 16 13:36:07 2006 UTC (17 years, 5 months ago) by laffer1
Diff to previous 328 , to selected 94
FreeBSD all versions FireWire IOCTL kernel integer overflow information disclousure

Revision 328 - Directory Listing - [select for diffs]
Modified Wed Nov 1 01:02:34 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 327 , to selected 94
Signals can be delivered to a process or thread.  Check for thread delivered signals as well.

Revision 327 - Directory Listing - [select for diffs]
Modified Wed Nov 1 00:58:45 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 326 , to selected 94
EWOULDBLOCK should be a recoverable error.  If it is not, clients will experience data loss using TCP.

Revision 326 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:22:30 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 325 , to selected 94
Cleanup

Revision 325 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:20:59 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 324 , to selected 94
List recent changes and removals.

Revision 324 - Directory Listing - [select for diffs]
Modified Tue Oct 31 19:20:02 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 323 , to selected 94
$MidnightBSD$
Remove clause 3 from UCB license
Cleanup of man7

Revision 323 - Directory Listing - [select for diffs]
Modified Mon Oct 30 21:39:18 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 322 , to selected 94
Update DRM/DRI.  Fix ptrace_machdep build error.

Revision 322 - Directory Listing - [select for diffs]
Modified Mon Oct 30 20:28:38 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 321 , to selected 94
oops

Revision 321 - Directory Listing - [select for diffs]
Modified Mon Oct 30 18:51:07 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 320 , to selected 94
i915 attachment and running fixed.
i915 vblank support.
Radeon's new memory map support.
ATI PCI/PCIE GART fix.
r300 fixes

Hack to radeon module to shut up errors.

Obtained from FreeBSD stable

Revision 320 - Directory Listing - [select for diffs]
Modified Mon Oct 30 17:02:39 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 319 , to selected 94
Bandaid to get world to build.  Need to research/fix this problem.

Revision 319 - Directory Listing - [select for diffs]
Modified Mon Oct 30 16:55:24 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 318 , to selected 94
Be reasonable when overwrite mode is enabled and there are hard links.  Overwriting when links > 1 will cause data loss.

Obtained from FreeBSD, OpenBSD.

Revision 318 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:50:43 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 317 , to selected 94
Sync with FreeBSD Stable/vendor.

Revision 317 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:50:17 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 316 , to selected 94
Sync bsnmpd with FreeBSD stable/vendor.

Revision 316 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:28:00 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 315 , to selected 94
update documentation as we've already imported the functional changes for 9.3.2p1.

Revision 315 - Directory Listing - [select for diffs]
Modified Mon Oct 30 15:18:22 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 314 , to selected 94
fix lukemftpd

Revision 314 - Directory Listing - [select for diffs]
Modified Mon Oct 30 14:50:16 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 313 , to selected 94
Only catch SIGINFO when LIBPTHREAD_DEBUG is defined in the environment.

Eliminate a race condition in timed waist (cv, mutex, sleeps).

Don't forget to init a TAILQ before using it.

Allocate a thread's tcb last so it is easier to handle failures to malloc() siginfo.

Include needed headers obtained through pthread.h

Obtained from FreeBSD (March 2006 MFC)

Revision 313 - Directory Listing - [select for diffs]
Modified Mon Oct 30 13:55:39 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 312 , to selected 94
Remove alpha references, install shared libc_r into /lib because its aliased by libpthread and some /sbin tools.

Revision 312 - Directory Listing - [select for diffs]
Modified Mon Oct 30 13:50:18 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 311 , to selected 94
Added bce a few months back.  Need a man page.

Revision 311 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:43:26 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 310 , to selected 94
Correct decoding a string containing '/'

Revision 310 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:34:44 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 309 , to selected 94
Added strtonum

Revision 309 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:30:16 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 308 , to selected 94
More cleanup

Revision 308 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:28:15 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 307 , to selected 94
Posixize function strtonum, clean up manpage.

Revision 307 - Directory Listing - [select for diffs]
Modified Mon Oct 30 07:22:30 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 306 , to selected 94
Oops.. someone forgot to add the definition for strtonum

Revision 306 - Directory Listing - [select for diffs]
Modified Sat Oct 28 17:34:35 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 305 , to selected 94
$MidnightBSD$

Revision 305 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:15:57 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 304 , to selected 94
Described various src/sys/dev updates, lukemftpd and other exiting things.

Revision 304 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:06:48 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 303 , to selected 94
Added intel ICH7 version

Revision 303 - Directory Listing - [select for diffs]
Modified Sat Oct 28 06:04:20 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 302 , to selected 94
Recently added Intel ICH8, nForce 5 support.

Revision 302 - Directory Listing - [select for diffs]
Modified Sat Oct 28 05:14:30 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 301 , to selected 94
Clear invalid bits in SSE mxcsr register.

Revision 301 - Directory Listing - [select for diffs]
Modified Sat Oct 28 05:08:09 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 300 , to selected 94
Clear invalid bits in SSE mxcsr register

Revision 300 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:41:43 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 299 , to selected 94
Added two additional Intel PCI ids for fxp 10/100 Pro NICs.

Revision 299 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:27:11 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 298 , to selected 94
Clear invalid bits in SSE mxcsr register.

Revision 298 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:16:57 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 297 , to selected 94
Don't set CR0_NE and CR0_MP in npx_probe() as they are already set earlier in cpu_setregs().

If we know this CPU has a FPU via cpuid, just assume INT16 and make the dmesg quiet.  This is true for all Pentium class processors and even some 486DX systems.

Revision 297 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:04:49 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 296 , to selected 94
Don't allow userland to set hardware watch points on kernel memory for i386.

Revision 296 - Directory Listing - [select for diffs]
Modified Sat Oct 28 04:01:34 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 295 , to selected 94
Remove UCB advertising clause.

Revision 295 - Directory Listing - [select for diffs]
Modified Sat Oct 28 01:03:14 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 294 , to selected 94
change seeded check

Revision 294 - Directory Listing - [select for diffs]
Modified Sat Oct 28 01:01:05 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 293 , to selected 94
Update lukemftpd

Revision 293 - Directory Listing - [select for diffs]
Modified Fri Oct 27 22:11:59 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 292 , to selected 94
Missed mpt changes.

Revision 292 - Directory Listing - [select for diffs]
Modified Fri Oct 27 20:46:54 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 291 , to selected 94
Sync with cam changes.

Revision 291 - Directory Listing - [select for diffs]
Modified Fri Oct 27 19:52:26 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 290 , to selected 94
Add speed sense correction for U320 SCSI.  Correct problem with mpt driver import.

Revision 290 - Directory Listing - [select for diffs]
Modified Fri Oct 27 16:35:43 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 289 , to selected 94
Back out changes.

Revision 289 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:54:29 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 288 , to selected 94
Sync with FreeBSD 6-Stable

Revision 288 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:49:00 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 287 , to selected 94
Sync Via VGE based Gigabit ethernet with FreeBSD 6-Stable

Revision 287 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:46:20 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 286 , to selected 94
Sync with FreeBSD 6-Stable (6.2 beta)

Revision 286 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:44:29 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 285 , to selected 94
Sync mpt driver with 6-Stable (6.2 beta).  Adds support for newer fibre channel cards and SCSI controllers.

Revision 285 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:36:04 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 284 , to selected 94
Sync USB support with FreeBSD 6.1 Release.

Revision 284 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:32:37 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 283 , to selected 94
Fix handling of keyboard LEDs.

Revision 283 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:30:17 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 282 , to selected 94
Import some locking changes from FreeBSD

Revision 282 - Directory Listing - [select for diffs]
Modified Fri Oct 27 15:28:41 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 281 , to selected 94
Part 3:
Add support for nforce5 and intel ICH8 chipsets.  Add some additional ICH7 support.

From FreeBSD

Revision 281 - Directory Listing - [select for diffs]
Modified Thu Oct 26 21:17:32 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 280 , to selected 94
Part 2 of our large ata update.  Most of these changes come from FreeBSD 6-stable or 6.1 Release.  We should be at least at 6.1 release levels with our support for devices with this commit.

Add support for the JMicron JMB361, 365 and 366 chips.

Make the ATAPI sense data accessible when using the ioctl interface.

Revision 280 - Directory Listing - [select for diffs]
Modified Thu Oct 26 12:59:58 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 279 , to selected 94
Fix spelling error and change to MidnightBSD

Revision 279 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:42:48 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 278 , to selected 94
Document -l maxrun.  It was added to freebsd nearly 12 years ago and no one bothered to document it.

Revision 278 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:07:47 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 277 , to selected 94
Add reload command.

Revision 277 - Directory Listing - [select for diffs]
Modified Wed Oct 18 16:07:04 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 276 , to selected 94
Fix amd if installed from ports or another source.

Revision 276 - Directory Listing - [select for diffs]
Modified Wed Oct 18 15:52:35 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 275 , to selected 94
Avoid a warning for each whiteout found during ls -lW

# ls -lW
total 2
-rw-r--r--  1 root  wheel  6 Oct 18 14:46 file1
ls: ./file2: No such file or directory
w---------  0 root  wheel  0 Jan  1  1970 file2

From FreeBSD rev 1.76

Revision 275 - Directory Listing - [select for diffs]
Modified Wed Oct 18 15:47:38 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 274 , to selected 94
Do not call chflags() for whiteouted files.  From FreeBSD rev 1.56

Revision 274 - Directory Listing - [select for diffs]
Modified Mon Oct 16 15:29:06 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 273 , to selected 94
Remove references to alpha

Revision 273 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:11:58 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 272 , to selected 94
Try to catch up recent commits.

Revision 272 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:07:21 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 271 , to selected 94
No locks on tree at this time.

Revision 271 - Directory Listing - [select for diffs]
Modified Sun Oct 15 00:06:35 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 270 , to selected 94
informal maintainer change from freebsd repo.

Revision 270 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:52:44 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 269 , to selected 94
Remove alpha arch references.

Revision 269 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:42:41 2006 UTC (17 years, 6 months ago) by laffer1
Diff to previous 268 , to selected 94
Change ports reference to mports.

Revision 268 - Directory Listing - [select for diffs]
Modified Sat Oct 14 23:08:54 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 267 , to selected 94
Fast interupt handlers are causing problems on some systems.  This will workaround the problem until it can be resolved.

Revision 267 - Directory Listing - [select for diffs]
Modified Fri Oct 13 23:15:50 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 266 , to selected 94
Only use the channel in the request given to ata_completed if
its still present.

Only look for ICRC and CORR errors on ATA devices not ATAPI.

Get rid of all the long long and mixint casting in printfs'.

On all our platforms intmax == int64_t so simply using %j to
print int64_ts' is safe all over, and doesn't pollute the code.

Update atapi-fd to support direct devices such as disks.

ATAUSB will need to hook inot the delayed boot identity to
have interrupts running, so externalize it.

Add USB modes.

Revision 266 - Directory Listing - [select for diffs]
Modified Fri Oct 13 20:43:48 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 265 , to selected 94
Keep the parent device (channel) around in ata_request so that we don't
panic on device removal or failure.

Clean up ata_fail_requests to prevent the queue mnging to fail.

Ensure ata_reinit does things in the right order to prevent panics.

Revision 265 - Directory Listing - [select for diffs]
Modified Thu Oct 12 20:52:33 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 264 , to selected 94
Fix memory leak in UDF.

Revision 264 - Directory Listing - [select for diffs]
Modified Tue Oct 10 20:03:47 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 263 , to selected 94
fix strange stray character possibly from faulty old server backup.

Revision 263 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:44:06 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 262 , to selected 94
Update config for openssh 4.4p1

Revision 262 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:40:33 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 261 , to selected 94
commit the config change.

Revision 261 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:21:56 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 260 , to selected 94
add lukemftpd.

Revision 260 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:20:24 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 259 , to selected 94
if rpc.pcnfsd exists, it would be a port.

Revision 259 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:18:37 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 258 , to selected 94
Comment out examples.

Revision 258 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:15:06 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 257 , to selected 94
If NO_BIND_MTREE is set, we don't have anywehre to put namedb files.  No need to try.

Revision 257 - Directory Listing - [select for diffs]
Modified Tue Oct 10 19:12:20 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 256 , to selected 94
Fix NO_CRYPT option when it is only defined during some make operations.

Revision 256 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:52:38 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 255 , to selected 94
Add $MidnightBSD$ and the netbsd namespace hack.

Revision 255 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:48:14 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 254 , to selected 94
namespace hack from netbsd

Revision 254 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:46:55 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 253 , to selected 94
Fix static compiling.

Revision 253 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:46:54 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 252 , to selected 94
netbsd namespace hack

Revision 252 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:41:10 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 251 , to selected 94
namespace hack from netbsd

Revision 251 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:38:44 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 250 , to selected 94
openssh 4.4p1 import fix

Revision 250 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:37:52 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 249 , to selected 94
netbsd namespace hack

Revision 249 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:32:15 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 248 , to selected 94
add additional files from the OpenSSH import

Revision 248 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:30:23 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 247 , to selected 94
NetBSD namespace hack.

Revision 247 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:27:32 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 246 , to selected 94
NetBSD hack for namespace pollution.

Revision 246 - Directory Listing - [select for diffs]
Modified Tue Oct 10 18:25:49 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 245 , to selected 94
Minimize namespace pollution. NetBSD hack.

Revision 245 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:36:54 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 244 , to selected 94
fix build of openssh.

Revision 244 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:23:51 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 243 , to selected 94
Fix bug in malloc_uninit():
Releasing items from the mt_zone can not be done by a simple uma_zfree() call since mt_zone is allocated with the UMA_ZONE_MALLOC flag.  Use uma_zfree_arg instead and supply the slam.

This bug can cause panics in low memory conditions while unloading kernel modules containing MALLOC_DEFINE(...) statements.

This commit brings kern_malloc.c up to FreeBSD 6.1 release equivalency.

Revision 243 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:08:08 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 242 , to selected 94
Remove extraneous PHOLD() in kthread_create()

Revision 242 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:06:10 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 241 , to selected 94
fix openssh import

Revision 241 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:04:35 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 240 , to selected 94
Fix OpenSSH import

Revision 240 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:02:13 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 239 , to selected 94
fix auth files based on freebsd stable changes.

Revision 239 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:01:30 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 238 , to selected 94
Fix authentication files based on FreeBSD stable changes.

Revision 238 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:00:40 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 237 , to selected 94
update tricks for 4.4

Revision 237 - Directory Listing - [select for diffs]
Modified Tue Oct 10 15:00:15 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 235 , to selected 94
Change directions for OpenSSH 4.4

Revision 235 - Directory Listing - [select for diffs]
Modified Tue Oct 10 14:38:30 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 233 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r234,
which included commits to RCS files with non-trunk default branches.
Revision 233 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:19:03 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 232 , to selected 94
Don't interpret .//dir as /dir.

Revision 232 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:16:20 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 231 , to selected 94
document changes.

Revision 231 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:15:15 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 230 , to selected 94
Copy filename read from stdin into the private buffer.

Revision 230 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:12:18 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 229 , to selected 94
Fix typo.

Revision 229 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:11:04 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 228 , to selected 94
Be pedantic and do fts_close() when done.

Revision 228 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:09:01 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 227 , to selected 94
Fix some typos and clarify some information in the man page regarding column title such as =foo at the end of -o.

Revision 227 - Directory Listing - [select for diffs]
Modified Sun Oct 8 15:06:27 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 226 , to selected 94
Fix the case where the user specifies an alternate heading for some output format keyword and the keyword they picked is an alias to some other keyword. This includes the segfault fixes.  (FreeBSD)

Revision 226 - Directory Listing - [select for diffs]
Modified Sun Oct 8 14:59:26 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 225 , to selected 94
Add -F option to delete empty directories when creating a new symlink.

Revision 225 - Directory Listing - [select for diffs]
Modified Sun Oct 8 14:27:29 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 224 , to selected 94
update manpage

Revision 224 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:21:47 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 223 , to selected 94
Fix comment.

Revision 223 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:19:42 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 222 , to selected 94
Fix WARNS=2 warnings.

Revision 222 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:08:55 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 221 , to selected 94
Make sure the filename for the kernel is correct.  The last character could be wrong with the previous code.

Revision 221 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:07:29 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 220 , to selected 94
When enabling A20 put upper limit on amount of time we wait for the keyboard controller to get ready (65K x ISA access time, visually around 1 second).  If we have wait more than that amount it's likely that the hardware is a legacy-free system and doesn't have a keyboard controller and doesn't require enabling A20 at all.

This makes cdboot/pxeldr work on MacBook Pro systems with Boot Camp and some IBM Netvista systems such as the S40.

Revision 220 - Directory Listing - [select for diffs]
Modified Sun Oct 8 06:00:04 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 219 , to selected 94
Reduces the size of BTX and boot2 along with some Compaq/HP bios compatibility fixes.

Revision 219 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:48:24 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 218 , to selected 94
Fix for AMD64 systems so that the code generated is identical.

Revision 218 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:46:40 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 217 , to selected 94
whitespace cleanup

Revision 217 - Directory Listing - [select for diffs]
Modified Sun Oct 8 05:43:48 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 216 , to selected 94
Remove BSD/OS option and skip the beep if the selection is ok.

Revision 216 - Directory Listing - [select for diffs]
Modified Sun Oct 8 04:52:18 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 215 , to selected 94
Remove advertising clause

Revision 215 - Directory Listing - [select for diffs]
Modified Sun Oct 8 04:50:57 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 214 , to selected 94
Remove clause as approved in 1999

Revision 214 - Directory Listing - [select for diffs]
Modified Sat Oct 7 18:33:48 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 213 , to selected 94
The UK had some changes with their time zones.  This also caused the zoneinfo import to screw up tzsetup.

Revision 213 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:33:20 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 212 , to selected 94
Bring the "just copy" hit list closer to date.

Revision 212 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:26:19 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 211 , to selected 94
Fix the location of the kernel during binary upgrades.

Revision 211 - Directory Listing - [select for diffs]
Modified Sat Oct 7 16:22:27 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 210 , to selected 94
Fix binary upgrades by accounting for the schg flag on /var/empty

Revision 210 - Directory Listing - [select for diffs]
Modified Wed Oct 4 01:34:54 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 209 , to selected 94
Fixing problems with 4.4p1 import

Revision 209 - Directory Listing - [select for diffs]
Modified Tue Oct 3 02:03:03 2006 UTC (17 years, 7 months ago) by raven
Diff to previous 207 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r208,
which included commits to RCS files with non-trunk default branches.
Revision 207 - Directory Listing - [select for diffs]
Modified Mon Oct 2 04:59:17 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 206 , to selected 94
Fix a number of security vulnerabilities in OpenSSL as reported on their website Septmeber 28, 2006.

Revision 206 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:39:35 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 205 , to selected 94
forgot to add int copyout :)

Revision 205 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:24:29 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 204 , to selected 94
Adjusted directions

Revision 204 - Directory Listing - [select for diffs]
Modified Mon Oct 2 00:16:53 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 202 , to selected 94
gzio.c minigzip.c and zconf.h have changes that must be maintained during each upgrade from the vendor branch.

Revision 202 - Directory Listing - [select for diffs]
Modified Sun Oct 1 23:49:06 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 200 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r201,
which included commits to RCS files with non-trunk default branches.
Revision 200 - Directory Listing - [select for diffs]
Modified Sun Oct 1 22:12:20 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 199 , to selected 94
Make changes to Generic.  Remove legacy 486 cpu support.  $MidnightBSD$

Revision 199 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:55:48 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 198 , to selected 94
$MidnightBSD$

Revision 198 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:50:12 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 197 , to selected 94
$MidnightBSD$

Revision 197 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:47:25 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 196 , to selected 94
Fix some issues with ports/mports change. $MidnightBSD$

Revision 196 - Directory Listing - [select for diffs]
Modified Sun Oct 1 21:08:37 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 195 , to selected 94
fix ports tarball name

Revision 195 - Directory Listing - [select for diffs]
Modified Sun Oct 1 15:18:11 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 194 , to selected 94
Convert to mports.

Revision 194 - Directory Listing - [select for diffs]
Modified Sat Sep 30 18:29:33 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 193 , to selected 94
adjust nfs_diskless to work in additional situations.

Revision 193 - Directory Listing - [select for diffs]
Modified Sat Sep 30 15:00:44 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 192 , to selected 94
Remove USB keyboard option as we have kbdmux in.  Clean up menu text to improve usability.

Revision 192 - Directory Listing - [select for diffs]
Modified Fri Sep 29 14:10:15 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 191 , to selected 94
Change release target to use mports instead of ports.

Revision 191 - Directory Listing - [select for diffs]
Modified Wed Sep 27 12:58:48 2006 UTC (17 years, 7 months ago) by archite
Diff to previous 190 , to selected 94
ALTQ configuration for i386 KERNEL

Revision 190 - Directory Listing - [select for diffs]
Modified Tue Sep 26 18:10:18 2006 UTC (17 years, 7 months ago) by archite
Diff to previous 189 , to selected 94
Update pkg_add -r path

Revision 189 - Directory Listing - [select for diffs]
Modified Sat Sep 23 16:25:27 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 188 , to selected 94
Fix a problem with some sun usb based machines.

Revision 188 - Directory Listing - [select for diffs]
Modified Sat Sep 23 02:56:53 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 187 , to selected 94
Fix POSIX compliance.

Revision 187 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:38:26 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 186 , to selected 94
Change pkg_add -r to MidnightBSD ftp.

Revision 186 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:26:01 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 185 , to selected 94
This patch corrects a problem when the max vnodes is below the minimum required by the code.  nm_wcommitsize calculation should be reviewed

Revision 185 - Directory Listing - [select for diffs]
Modified Sat Sep 23 01:16:55 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 184 , to selected 94
Techinically its a bad fd return as it is with all other cases.

Revision 184 - Directory Listing - [select for diffs]
Modified Thu Sep 21 16:45:30 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 183 , to selected 94
Fix panics with squid 2.6 using threading.  threads/103127 fbsd

Revision 183 - Directory Listing - [select for diffs]
Modified Wed Sep 20 03:39:30 2006 UTC (17 years, 7 months ago) by archite
Diff to previous 182 , to selected 94
gzip security patch

Revision 182 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:23:58 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 181 , to selected 94
Remove advertising clause from UCB

Revision 181 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:09:11 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 180 , to selected 94
Add $MidnightBSD$

Revision 180 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:08:37 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 179 , to selected 94
Remove advertising clause, add $MidnightBSD$

Revision 179 - Directory Listing - [select for diffs]
Modified Mon Sep 18 16:06:33 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 178 , to selected 94
Remove the advertising clause

Revision 178 - Directory Listing - [select for diffs]
Modified Mon Sep 18 15:55:53 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 177 , to selected 94
Clean up usage, fix row/column order to match OpenBSD, NetBSD and the last BSD 4.4 lite2 release.

Revision 177 - Directory Listing - [select for diffs]
Modified Mon Sep 18 00:15:49 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 176 , to selected 94
Add bce module

Revision 176 - Directory Listing - [select for diffs]
Modified Sun Sep 17 13:59:51 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 175 , to selected 94
Enable bce gigabit ethernet driver.

Revision 175 - Directory Listing - [select for diffs]
Modified Sun Sep 17 13:56:38 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 174 , to selected 94
Enable the bce gigabit ethernet driver.

Revision 174 - Directory Listing - [select for diffs]
Modified Sun Sep 17 03:16:22 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 173 , to selected 94
Enable building bce kernel module

Revision 173 - Directory Listing - [select for diffs]
Modified Sun Sep 17 02:37:31 2006 UTC (17 years, 7 months ago) by laffer1
Diff to previous 172 , to selected 94
Update from 6.0.5 to 6.1.4 Intel driver.  This update adds support for one additional NIC and hopefully will fix some problems with the em found on some Dell gx260's negotiating below gigabit speeds!

Revision 172 - Directory Listing - [select for diffs]
Modified Thu Sep 14 03:56:55 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 171 , to selected 94
Changed gcc version to indicate MidnightBSD

Revision 171 - Directory Listing - [select for diffs]
Modified Sun Sep 10 00:40:35 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 170 , to selected 94
Remove pidfile reference so ntpd can be stopped using the rc mechanisms.

Revision 170 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:31:34 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 169 , to selected 94
Remove $FreeBSD$

Revision 169 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:27:07 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 168 , to selected 94
*** empty log message ***

Revision 168 - Directory Listing - [select for diffs]
Modified Sat Sep 9 23:13:07 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 167 , to selected 94
*** empty log message ***

Revision 167 - Directory Listing - [select for diffs]
Modified Sat Sep 9 14:06:07 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 166 , to selected 94
Fix standards section as we renamed -p to -D.

Revision 166 - Directory Listing - [select for diffs]
Modified Sat Sep 9 13:48:40 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 165 , to selected 94
Changed -p flag to -D for "Date".  Cleaned up the manual.  The utility now checks the length of the format argument and gives an error immediately.

I do not want cat to become a general purpose filter, but this functionality seems quite useful.

Revision 165 - Directory Listing - [select for diffs]
Modified Fri Sep 8 14:04:24 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 164 , to selected 94
A new flag, -p, was added to cat which allows dates to be prepended to each line of output.  This could be useful when logging from scripts, etc.

The format is based on strftime
so cat -p %D test might print out
09/08/06testing this
if the file test contained testing this.

This is based on a patch floating around FreeBSD-Current.

Revision 164 - Directory Listing - [select for diffs]
Modified Thu Sep 7 18:52:52 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 163 , to selected 94
 recursive DNS server, a remote attacker sending enough recursive
queries for the replies to arrive after all the interested clients
have left the recursion queue will trigger an INSIST failure in the
named(8) daemon.  Also for a a recursive DNS server, an assertion
failure can occour when processing a query whose reply will contain
more than one SIG(covered) RRset.

For an authoritative DNS server serving a RFC 2535 DNSSEC zone which
is queried for the SIG records where there are multiple SIG(covered)
RRsets (e.g. a zone apex), named(8) will trigger an assertion failure
when it tries to construct the response.

Revision 163 - Directory Listing - [select for diffs]
Modified Thu Sep 7 18:51:09 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 162 , to selected 94
Vulnerability in OpenSSL where bytes are ignored in keys around the signature.

Revision 162 - Directory Listing - [select for diffs]
Modified Wed Sep 6 14:57:43 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 161 , to selected 94
Work around a deadlock when ATA waits for the taskqueue to call back for completion and something else is holding the taskqueue waiting for ATA to return.

Fixes the "semaphore timeout !! DANGER Will Robinson !!" messages.  This patch was obtained from FreeBSD ata-queue.c  1.50.2.3 (march 1 2006) and ata-all.h from the same time.

Revision 161 - Directory Listing - [select for diffs]
Modified Tue Sep 5 12:34:38 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 160 , to selected 94
*** empty log message ***

Revision 160 - Directory Listing - [select for diffs]
Modified Mon Sep 4 21:00:53 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 159 , to selected 94
Someone forgot to add ksh to bin/Makefile

Revision 159 - Directory Listing - [select for diffs]
Modified Wed Aug 30 04:16:05 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 158 , to selected 94
Correct a possible race condition and remove some locks that are redundant.

Revision 158 - Directory Listing - [select for diffs]
Modified Tue Aug 29 16:34:08 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 157 , to selected 94
$MidnightBSD$

Revision 157 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:40:51 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 156 , to selected 94
Correct spelling errors.

Revision 156 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:34:05 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 155 , to selected 94
Point at localhost instead of bar.com

Revision 155 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:24:41 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 154 , to selected 94
Sync with FreeBSD and indirectly NetBSD.

Revision 154 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:06:06 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 153 , to selected 94
Removing rc_fancy patch.

Revision 153 - Directory Listing - [select for diffs]
Modified Tue Aug 29 14:05:11 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 152 , to selected 94
Reverting to color free rc.subr.

Revision 152 - Directory Listing - [select for diffs]
Modified Tue Aug 29 13:09:18 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 151 , to selected 94
Fix formatting problem with ambiguous ".\n" lines in rc startup when rc fancy is disabled.

Revision 151 - Directory Listing - [select for diffs]
Modified Tue Aug 29 05:23:24 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 150 , to selected 94
$MidnightBSD$

Revision 150 - Directory Listing - [select for diffs]
Modified Tue Aug 29 05:16:19 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 149 , to selected 94
$MidnightBSD$

Revision 149 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:52:35 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 148 , to selected 94
Free to Midnight

Revision 148 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:47:46 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 147 , to selected 94
$MidnightBSD$

Revision 147 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:28:59 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 146 , to selected 94
$MidnightBSD$

Revision 146 - Directory Listing - [select for diffs]
Modified Mon Aug 28 02:15:05 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 145 , to selected 94
$MidnightBSD$

Revision 145 - Directory Listing - [select for diffs]
Modified Mon Aug 28 01:56:42 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 144 , to selected 94
$MidnightBSD$

Revision 144 - Directory Listing - [select for diffs]
Modified Mon Aug 28 01:35:55 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 143 , to selected 94
$MidnightBSD$

Revision 143 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:47:59 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 142 , to selected 94
$MidnightBSD$ and add ntpd.conf

Revision 142 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:44:25 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 141 , to selected 94
Remove ntpd related files.

Revision 141 - Directory Listing - [select for diffs]
Modified Mon Aug 28 00:37:35 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 140 , to selected 94
Added rdate

Revision 140 - Directory Listing - [select for diffs]
Modified Sun Aug 27 23:45:11 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 139 , to selected 94
$MidnightBSD$

Revision 139 - Directory Listing - [select for diffs]
Modified Sun Aug 27 23:41:08 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 138 , to selected 94
Mergemaster now checks $MidnightBSD$

Revision 138 - Directory Listing - [select for diffs]
Modified Sun Aug 27 20:56:38 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 137 , to selected 94
Updating files

Revision 137 - Directory Listing - [select for diffs]
Modified Sun Aug 27 20:11:25 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 136 , to selected 94
Changed default umask to 077

Revision 136 - Directory Listing - [select for diffs]
Modified Sun Aug 27 19:53:16 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 135 , to selected 94
Change dot files to 600 by default

Revision 135 - Directory Listing - [select for diffs]
Modified Sun Aug 27 19:49:29 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 134 , to selected 94
Update so that home directories are 700 by default.

Revision 134 - Directory Listing - [select for diffs]
Modified Sun Aug 27 18:49:41 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 133 , to selected 94
Added Eric Anderson's patch for cp which adds -a an -l flags.

-a is an archive mode which is equivalent to -PpR
-l is link mode where regular files are hard linked instead of copied.

Revision 133 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:24:52 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 132 , to selected 94
ACPI patches for laptops and other changes related to the new sleep_queue / em driver commit.

if_media was updated to allow import of bce and some baudrate changes in vge.

Revision 132 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:22:55 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 131 , to selected 94
The following controllers are supported by this driver:
    BCM5706C A2, A3
    BCM5708C B1

Revision 131 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:20:58 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 130 , to selected 94
Patched ACPI problem in hwpcm which needs further testing.  randomdev was updated along with it.

mii had a bug with recently driver patches as a function was missing to set the ifmedia_baudrate().  The function was added elsewhere.

Revision 130 - Directory Listing - [select for diffs]
Modified Fri Aug 25 06:19:06 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 129 , to selected 94
Corrected a problem with keyboard control after kbdmux and kbd patches.

Revision 129 - Directory Listing - [select for diffs]
Modified Fri Aug 25 03:08:09 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 127 , to selected 94
Removed baudrate as its not needed.

Revision 127 - Directory Listing - [select for diffs]
Modified Thu Aug 24 07:53:57 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 124 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r126,
which included commits to RCS files with non-trunk default branches.
Revision 124 - Directory Listing - [select for diffs]
Modified Thu Aug 24 07:47:42 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 122 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r123,
which included commits to RCS files with non-trunk default branches.
Revision 122 - Directory Listing - [select for diffs]
Modified Thu Aug 24 06:51:36 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 121 , to selected 94
Keyboard multiplexer added to GENERIC. syscons patched to detect keyboards and add them as they are found. i386 only.

Revision 121 - Directory Listing - [select for diffs]
Modified Thu Aug 24 05:37:56 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 120 , to selected 94
Added psm ID's for glide point devices commonly found on laptops. Brings PSM support to FreeBSD 6.1 release.

Revision 120 - Directory Listing - [select for diffs]
Modified Thu Aug 24 05:35:39 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 119 , to selected 94
Intel gigabit network driver (em) updated to 6.05 with FreeBSD 6-stable enhancements.  Commit required a sync to a new version of the sleep queue routines which also fixed a deadlock problem.  An ACPI issue with some laptops has been noted and a fix will be forthcoming.

Revision 119 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:31:14 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 118 , to selected 94
Patch for ppp(4) buffer overflow

Revision 118 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:29:12 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 117 , to selected 94
Remove ntpdate utility as rdate replaces it.

Revision 117 - Directory Listing - [select for diffs]
Modified Thu Aug 24 00:18:42 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 116 , to selected 94
rdate's -c flag was not working as -DLEAPSECONDS was not used in the base system to maintain posix compliance.  Instead, rdate was altered to read a "right" subdirectory just as openbsd does.  In right, leapsecond versions of all the zones are built so that we can maintain legal time if needed.

Revision 116 - Directory Listing - [select for diffs]
Modified Wed Aug 23 17:39:39 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 115 , to selected 94
Made final corrections to rdate.

Revision 115 - Directory Listing - [select for diffs]
Modified Wed Aug 23 15:36:08 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 114 , to selected 94
Go back to PHK malloc.  Development version accidently commited.

Revision 114 - Directory Listing - [select for diffs]
Modified Tue Aug 22 21:33:31 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 113 , to selected 94
Another update so that man pages display correct OS.

Revision 113 - Directory Listing - [select for diffs]
Modified Tue Aug 22 21:05:08 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 112 , to selected 94
Added hack so that ^L clears the screen.

Revision 112 - Directory Listing - [select for diffs]
Modified Tue Aug 22 15:18:15 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 111 , to selected 94
Fixing type in Makefile

Revision 111 - Directory Listing - [select for diffs]
Modified Tue Aug 22 12:58:06 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 110 , to selected 94
The old ntpdate program displayed the clock error by default.  Change rdate to do the same thing.  Idea from DragonFly.

Revision 110 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:56:42 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 109 , to selected 94
rdate was recently added. Note it in the timed man page.

Revision 109 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:52:12 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 108 , to selected 94
Import of OpenBSD's rdate utility.  Leapseconds flag disabled until a decision is made on /usr/share/zoneinfo/Right/UTC or equivalent.

Revision 108 - Directory Listing - [select for diffs]
Modified Tue Aug 22 05:03:27 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 107 , to selected 94
Updated to tzdata2006j. Moved "systemv" into the backward category since its more backward than anything.

Revision 107 - Directory Listing - [select for diffs]
Modified Tue Aug 22 02:45:37 2006 UTC (17 years, 8 months ago) by archite
Diff to previous 106 , to selected 94
Changed groff so that man files now say MidnightBSD

Revision 106 - Directory Listing - [select for diffs]
Modified Tue Aug 22 01:22:12 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 105 , to selected 94
Removed several openbsd-compat functions not needed.  Smaller binaries are nice.

Revision 105 - Directory Listing - [select for diffs]
Modified Tue Aug 22 00:52:05 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 104 , to selected 94
Removed ntpdate rc script.. forgot to fix makefile.

Revision 104 - Directory Listing - [select for diffs]
Modified Mon Aug 21 19:45:21 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 103 , to selected 94
*** empty log message ***

Revision 103 - Directory Listing - [select for diffs]
Modified Mon Aug 21 17:43:19 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 102 , to selected 94
Finishing up the OpenNTPD commits.  Since we no longer have ntpdate, i'll simply have to add rdate later.

Revision 102 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:29:14 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 101 , to selected 94
Added _ntp user for OpenNTPD

Revision 101 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:17:56 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 100 , to selected 94
Adjusted path to config file to point to /etc/ntpd.conf instead of /usr/local/etc/ntpd.conf

Revision 100 - Directory Listing - [select for diffs]
Modified Mon Aug 21 06:02:16 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 99 , to selected 94
OpenNTPD config file

Revision 99 - Directory Listing - [select for diffs]
Modified Mon Aug 21 05:54:56 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 98 , to selected 94
Do to naming conflicts, openntpd had to be commited to its own directory src/contrib/openntpd.  This commit should clean up most of the mess. I should plan these things out more carefully. :)

Revision 98 - Directory Listing - [select for diffs]
Modified Mon Aug 21 05:48:36 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 97 , to selected 94
Convert to OpenNTPD.

Revision 97 - Directory Listing - [select for diffs]
Modified Mon Aug 21 04:15:39 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 96 , to selected 94
*** empty log message ***

Revision 96 - Directory Listing - [select for diffs]
Modified Mon Aug 21 03:48:21 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 95 , to selected 94
Changed default password to use blowfish instead of md5

Revision 95 - Directory Listing - [select for diffs]
Modified Mon Aug 21 03:34:42 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 94
Imported strtonum() from OpenBSD

Revision 94 - Directory Listing - [selected]
Modified Sun Aug 20 23:06:33 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 92
This commit was generated by cvs2svn to compensate for changes in r93, which
included commits to RCS files with non-trunk default branches.
Revision 92 - Directory Listing - [select for diffs]
Modified Sun Aug 20 23:01:33 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 90 , to selected 94
*** empty log message ***

Revision 90 - Directory Listing - [select for diffs]
Modified Sun Aug 20 16:05:47 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 88 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r89, which
included commits to RCS files with non-trunk default branches.
Revision 88 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:54:16 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 87 , to selected 94
*** empty log message ***

Revision 87 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:49:02 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 86 , to selected 94
Correcting some mistakes on import.

Revision 86 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:43:46 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 84 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r85, which
included commits to RCS files with non-trunk default branches.
Revision 84 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:36:01 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 83 , to selected 94
Convert to OpenNTPD.

Revision 83 - Directory Listing - [select for diffs]
Modified Sun Aug 20 15:09:03 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 82 , to selected 94
Convert to OpenNTPD.

Revision 82 - Directory Listing - [select for diffs]
Modified Sun Aug 20 02:42:38 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 81 , to selected 94
*** empty log message ***

Revision 81 - Directory Listing - [select for diffs]
Modified Sun Aug 20 02:01:31 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 80 , to selected 94
Convert to OpenNTPD

Revision 80 - Directory Listing - [select for diffs]
Modified Sun Aug 20 01:37:20 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 79 , to selected 94
Switching to OpenNTPD.  Cleaning up old files.

Revision 79 - Directory Listing - [select for diffs]
Modified Sun Aug 20 01:13:44 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 78 , to selected 94
Switching to OpenNTPD

Revision 78 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:50:09 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 77 , to selected 94
Remove ISC ntpd

Revision 77 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:42:48 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 76 , to selected 94
Removing ISC bind

Revision 76 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:42:01 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 75 , to selected 94
Removing ISC ntpd

Revision 75 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:23:00 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 74 , to selected 94
Removing ISC ntpd

Revision 74 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:21:04 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 73 , to selected 94
*** empty log message ***

Revision 73 - Directory Listing - [select for diffs]
Modified Sun Aug 20 00:11:12 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 71 , to selected 94
Removing ISC ntpd

Revision 71 - Directory Listing - [select for diffs]
Modified Sat Aug 19 17:00:57 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 70 , to selected 94
Adding last few additions for OpenSSH

Revision 70 - Directory Listing - [select for diffs]
Modified Sat Aug 19 17:00:06 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 69 , to selected 94
adding remaining files for OpenSSH 4.3

Revision 69 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:49:51 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 68 , to selected 94
OpenSSH 4.3 patched files

Revision 68 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:47:07 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 67 , to selected 94
The remainder of the OpenSSH 4.3 upgrade

Revision 67 - Directory Listing - [select for diffs]
Modified Sat Aug 19 16:41:42 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 66 , to selected 94
Upgrade to OpenSSH 4.3 through modified FreeBSD-current sources.

Revision 66 - Directory Listing - [select for diffs]
Modified Sat Aug 19 06:52:44 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 65 , to selected 94
Added MidnightBSD to the kernel copyright notice.

Revision 65 - Directory Listing - [select for diffs]
Modified Fri Aug 18 23:13:16 2006 UTC (17 years, 8 months ago) by adam
Diff to previous 64 , to selected 94
Changed header information
Made KSH compile statically

Revision 64 - Directory Listing - [select for diffs]
Modified Fri Aug 18 00:44:47 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 63 , to selected 94
Corrected compiler bug

Revision 63 - Directory Listing - [select for diffs]
Modified Thu Aug 17 18:07:58 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 62 , to selected 94
ksh was added to the base system.

Revision 62 - Directory Listing - [select for diffs]
Modified Thu Aug 17 17:22:09 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 61 , to selected 94
Added ksh to the base system.

Revision 61 - Directory Listing - [select for diffs]
Modified Thu Aug 17 13:00:11 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 59 , to selected 94
Disabled stop on warning so ksh builds.  Eventually some code changes should be made to clear up the errors.

Revision 59 - Directory Listing - [select for diffs]
Modified Wed Aug 16 21:09:08 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 58 , to selected 94
OpenBSD 3.9 ksh

Revision 58 - Directory Listing - [select for diffs]
Modified Wed Aug 16 16:14:17 2006 UTC (17 years, 8 months ago) by laffer1
Diff to previous 57 , to selected 94
Updated to correspond to sendmail 8.13.8

Revision 57 - Directory Listing - [select for diffs]
Modified Mon Aug 14 12:07:52 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 56 , to selected 94
*** empty log message ***

Revision 56 - Directory Listing - [select for diffs]
Modified Mon Aug 14 11:52:13 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 55 , to selected 94
My first past at MidnightBSDizing the installer.  Perhaps I should look into teh DF installer.

Revision 55 - Directory Listing - [select for diffs]
Modified Mon Aug 14 11:00:08 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 53 , to selected 94
Added cvs tags.

Revision 53 - Directory Listing - [select for diffs]
Modified Sat Aug 12 01:05:38 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 51 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r52, which
included commits to RCS files with non-trunk default branches.
Revision 51 - Directory Listing - [select for diffs]
Modified Sun Aug 6 13:32:03 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 50 , to selected 94
Fixed typos in pfctl

Revision 50 - Directory Listing - [select for diffs]
Modified Sun Aug 6 13:31:16 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 49 , to selected 94
*** empty log message ***

Revision 49 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:24:23 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 48 , to selected 94
Fixed a bug in nfsd where a payload of zero would cause a kernel panic.

Revision 48 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:17:04 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 47 , to selected 94
fast_ipsec has an error which allows packets to bypass the anti-replay check.  See FreeBSD-SA6:11.ipsec

Revision 47 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:14:57 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 46 , to selected 94
Corrected OPIE security issue where a user mistakenly got root password change acces.  FreeBSD-SA6:12.opie

Revision 46 - Directory Listing - [select for diffs]
Modified Fri Aug 4 17:10:41 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 45 , to selected 94
FreeBSD-SA6:13 and 14 were patched.  The nis software and amd athlon fpu handling fixed.  Changes to echo and pfctl are needed to fix compile bugs with changes related to cvs tags and macros.

Revision 45 - Directory Listing - [select for diffs]
Modified Fri Aug 4 12:57:36 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 43 , to selected 94
Fixed a bug in smbfs where an attacker can escape a chroot environment.  See FreeBSD-SA-06:16.smbfs

Revision 43 - Directory Listing - [select for diffs]
Modified Fri Aug 4 02:03:05 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 41 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r42, which
included commits to RCS files with non-trunk default branches.
Revision 41 - Directory Listing - [select for diffs]
Modified Wed Jul 26 12:45:59 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 40 , to selected 94
Added __FBSDID hack so the tree builds until all cvs tags and macros are fixed.

Revision 40 - Directory Listing - [select for diffs]
Modified Wed Jul 26 12:35:19 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 39 , to selected 94
Added cvs tags.

Revision 39 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:25:33 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 38 , to selected 94
added cvs tags.

Revision 38 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:22:13 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 37 , to selected 94
Added cvs tags.

Revision 37 - Directory Listing - [select for diffs]
Modified Wed Jul 26 00:16:40 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 36 , to selected 94
Changed text to MidnightBSD.  Added cvs tag.

Revision 36 - Directory Listing - [select for diffs]
Modified Wed Jul 19 13:56:55 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 35 , to selected 94
Added cvs tags.

Revision 35 - Directory Listing - [select for diffs]
Modified Wed Jul 19 13:43:39 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 34 , to selected 94
Added cvs tags

Revision 34 - Directory Listing - [select for diffs]
Modified Mon Jul 17 23:07:58 2006 UTC (17 years, 9 months ago) by laffer1
Diff to previous 33 , to selected 94
Converted to MidnightBSD to fix motd repeat problem.

Revision 33 - Directory Listing - [select for diffs]
Modified Fri Jul 7 15:55:59 2006 UTC (17 years, 10 months ago) by laffer1
Diff to previous 32 , to selected 94
Added cvs id.

Revision 32 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:54:43 2006 UTC (17 years, 10 months ago) by laffer1
Diff to previous 31 , to selected 94
Add cvs ids.

Revision 31 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:50:33 2006 UTC (17 years, 10 months ago) by laffer1
Diff to previous 30 , to selected 94
Added cvs ids.

Revision 30 - Directory Listing - [select for diffs]
Modified Fri Jul 7 13:46:10 2006 UTC (17 years, 10 months ago) by laffer1
Diff to previous 29 , to selected 94
Added cvs ids

Revision 29 - Directory Listing - [select for diffs]
Modified Mon Jun 26 15:12:15 2006 UTC (17 years, 10 months ago) by laffer1
Diff to previous 28 , to selected 94
Modifying cvs tags and converting freebsd specific code.

Revision 28 - Directory Listing - [select for diffs]
Modified Mon May 22 06:14:15 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 27 , to selected 94
Added cvs header.

Revision 27 - Directory Listing - [select for diffs]
Modified Mon May 22 06:03:21 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 26 , to selected 94
Add cvs header.

Revision 26 - Directory Listing - [select for diffs]
Modified Mon May 22 05:08:38 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 25 , to selected 94
Added header.

Revision 25 - Directory Listing - [select for diffs]
Modified Mon May 22 04:35:12 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 24 , to selected 94
Added cvs header.

Revision 24 - Directory Listing - [select for diffs]
Modified Mon May 22 04:22:55 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 23 , to selected 94
Improved readability, added MidnightBSD copyright information.

Revision 23 - Directory Listing - [select for diffs]
Modified Mon May 22 04:09:41 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 22 , to selected 94
Removed FreeBSD references except where applicable.

Revision 22 - Directory Listing - [select for diffs]
Modified Mon May 22 04:05:53 2006 UTC (17 years, 11 months ago) by laffer1
Diff to previous 21 , to selected 94
Removed referece to FreeBSD source syncing.

Revision 21 - Directory Listing - [select for diffs]
Modified Mon May 1 17:50:15 2006 UTC (18 years ago) by laffer1
Diff to previous 20 , to selected 94
*** empty log message ***

Revision 20 - Directory Listing - [select for diffs]
Modified Fri Apr 28 04:23:55 2006 UTC (18 years ago) by laffer1
Diff to previous 19 , to selected 94
Syntax errors corrected.

Revision 19 - Directory Listing - [select for diffs]
Modified Fri Apr 28 03:07:38 2006 UTC (18 years ago) by laffer1
Diff to previous 18 , to selected 94
Fancy RC startup with colors.

Revision 18 - Directory Listing - [select for diffs]
Modified Fri Apr 28 01:46:50 2006 UTC (18 years ago) by laffer1
Diff to previous 17 , to selected 94
Not FreeBSD anymore... fix motd

Revision 17 - Directory Listing - [select for diffs]
Modified Sat Apr 22 20:27:44 2006 UTC (18 years ago) by laffer1
Diff to previous 16 , to selected 94
*** empty log message ***

Revision 16 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:19:36 2006 UTC (18 years ago) by laffer1
Diff to previous 15 , to selected 94
add missing sparc64 config and makefile for kernel.

Revision 15 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:18:59 2006 UTC (18 years ago) by laffer1
Diff to previous 14 , to selected 94
Add missing config and makefile.

Revision 14 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:18:19 2006 UTC (18 years ago) by laffer1
Diff to previous 13 , to selected 94
Add missing makefile and config files

Revision 13 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:14:45 2006 UTC (18 years ago) by laffer1
Diff to previous 12 , to selected 94
Fixed 13.viref.  Added makefile not imported initially.

Revision 12 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:13:08 2006 UTC (18 years ago) by laffer1
Diff to previous 11 , to selected 94
Correct version of the config files.

Revision 11 - Directory Listing - [select for diffs]
Modified Sat Apr 22 16:04:32 2006 UTC (18 years ago) by laffer1
Diff to previous 10 , to selected 94
Kernel config files were missing.

Revision 10 - Directory Listing - [select for diffs]
Modified Wed Mar 1 04:24:17 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 9 , to selected 94
Corrected import error where csh.a was not added.

Revision 9 - Directory Listing - [select for diffs]
Modified Tue Feb 28 04:09:52 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 6 , to selected 94
*** empty log message ***

Revision 6 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:38:42 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 3 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r5, which
included commits to RCS files with non-trunk default branches.
Revision 3 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:29:52 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 2 , to selected 94
This commit was generated by cvs2svn to compensate for changes in r2, which
included commits to RCS files with non-trunk default branches.
Revision 2 - Directory Listing - [select for diffs]
Modified Sat Feb 25 02:29:52 2006 UTC (18 years, 2 months ago) by laffer1
Diff to previous 1 , to selected 94
Imported from FreeBSD 6.0 sources

Revision 1 - Directory Listing - [select for diffs]
Added Sat Feb 25 02:29:52 2006 UTC (18 years, 2 months ago) by cvs2svn
Diff to selected 94
Standard project directories initialized by cvs2svn.

Convenience Links