From e57852311d510249803aea09c9fdba27aa072823 Mon Sep 17 00:00:00 2001 From: jsg Date: Sun, 2 May 2021 04:21:13 +0000 Subject: [PATCH] fix logic error in boot() ok deraadt@ --- sys/arch/riscv64/riscv64/machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arch/riscv64/riscv64/machdep.c b/sys/arch/riscv64/riscv64/machdep.c index 90da72abc14..d418d10383c 100644 --- a/sys/arch/riscv64/riscv64/machdep.c +++ b/sys/arch/riscv64/riscv64/machdep.c @@ -335,7 +335,7 @@ boot(int howto) cold = 1; if ((howto & RB_DUMP) != 0) - //dumpsys();//XXX no dump so far. CMPE295 + printf("no dump so far\n"); haltsys: config_suspend_all(DVACT_POWERDOWN); -- 2.20.1