From owner-freebsd-bugs Thu Jun 26 03:10:06 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA15052 for bugs-outgoing; Thu, 26 Jun 1997 03:10:06 -0700 (PDT) Received: (from gnats@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA15043; Thu, 26 Jun 1997 03:10:02 -0700 (PDT) Date: Thu, 26 Jun 1997 03:10:02 -0700 (PDT) Message-Id: <199706261010.DAA15043@hub.freebsd.org> To: freebsd-bugs Cc: From: Bruce Evans Subject: Re: kern/3953: kern-config: options PANIC_REBOOT_WAIT_TIME doesn't work Reply-To: Bruce Evans Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk The following reply was made to PR kern/3953; it has been noted by GNATS. From: Bruce Evans To: admin@citylink.dinoex.sub.org, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: kern/3953: kern-config: options PANIC_REBOOT_WAIT_TIME doesn't work Date: Thu, 26 Jun 1997 20:01:21 +1000 >giving the option PANIC_REBOOT_WAIT_TIME= in the kernel >config file doesn't make it into the kernel. >Reason: This option is put into opt_machdep.h; while the respective >#define is needed in kern/kern_shutdown.c --- but kern/kern_shutdown.c >doesn't load opt_machdep.h, but only opt_ddb.h. PANIC_REBOOT_WAIT_TIME has nothing to do with either ddb or machdep.c (opt_machdep.h is for options in machdep.c, and kern_shutdown.c is supposed to be machine-independent). This was broken when kern_shutdown.c was split off from machdep.c. SHOW_BUSYBUFS is broken in the same way. Bruce