Sat Dec 19 21:54:00 2020 UTC ()
implement boot -d for arm64.

could be done at the end of initarm() except it hangs currently.
this gets you a db> prompt before devices are configured.

ok @skrll.


(mrg)
diff -r1.22 -r1.23 src/sys/arch/evbarm/evbarm/autoconf.c

cvs diff -r1.22 -r1.23 src/sys/arch/evbarm/evbarm/autoconf.c (expand / switch to context diff)
--- src/sys/arch/evbarm/evbarm/autoconf.c 2018/08/27 09:52:16 1.22
+++ src/sys/arch/evbarm/evbarm/autoconf.c 2020/12/19 21:54:00 1.23
@@ -1,4 +1,4 @@
-/*	$NetBSD: autoconf.c,v 1.22 2018/08/27 09:52:16 jmcneill Exp $	*/
+/*	$NetBSD: autoconf.c,v 1.23 2020/12/19 21:54:00 mrg Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -30,9 +30,10 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.22 2018/08/27 09:52:16 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.23 2020/12/19 21:54:00 mrg Exp $");
 
 #include "opt_md.h"
+#include "opt_ddb.h"
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -170,6 +171,13 @@
 {
 	struct mainbus_attach_args maa;
 	struct cfdata *cf;
+
+#ifdef DDB
+	if (boothowto & RB_KDB) {
+		printf("Entering DDB...\n");
+		cpu_Debugger();
+	}
+#endif
 
 	(void) splhigh();