Module Name: src Committed By: nat Date: Wed Sep 18 01:34:08 UTC 2024
Modified Files: src/sys/arch/mac68k/dev: adb.c Log Message: The delay is only required for machines with built-in floppy drives. I doubt the vibration from an external drive on the Duos would affect adb before it attaches. To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 src/sys/arch/mac68k/dev/adb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/mac68k/dev/adb.c diff -u src/sys/arch/mac68k/dev/adb.c:1.61 src/sys/arch/mac68k/dev/adb.c:1.62 --- src/sys/arch/mac68k/dev/adb.c:1.61 Wed Sep 18 01:29:02 2024 +++ src/sys/arch/mac68k/dev/adb.c Wed Sep 18 01:34:08 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: adb.c,v 1.61 2024/09/18 01:29:02 nat Exp $ */ +/* $NetBSD: adb.c,v 1.62 2024/09/18 01:34:08 nat Exp $ */ /* * Copyright (C) 1994 Bradley A. Grantham @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: adb.c,v 1.61 2024/09/18 01:29:02 nat Exp $"); +__KERNEL_RCSID(0, "$NetBSD: adb.c,v 1.62 2024/09/18 01:34:08 nat Exp $"); #include "opt_adb.h" @@ -104,12 +104,6 @@ adbattach(device_t parent, device_t self case MACH_MACPB180: case MACH_MACPB180C: case MACH_MACPB150: - case MACH_MACPB210: - case MACH_MACPB230: - case MACH_MACPB250: - case MACH_MACPB270: - case MACH_MACPB280: - case MACH_MACPB280C: /* Reqired on machines with in-built trackballs. */ printf("... Waiting 5 seconds for adb devices to " "settle.");