From fd20867a9105c468be4800d5abe690cf478babba Mon Sep 17 00:00:00 2001 From: kettenis <> Date: Sat, 12 Jan 2019 17:05:00 +0000 Subject: [PATCH] Use acpidump -q to avoid message about ACPI information not being found. Many arm64 systems use device trees instead of ACPI and acpidump is expectected to fail on those systems. And vmm(4) doesn't provide ACPI information either. ok deraadt@ --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 00307461..fc7fd989 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.529 2018/07/23 11:54:49 florian Exp $ +# $OpenBSD: rc,v 1.530 2019/01/12 17:05:00 kettenis Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the @@ -507,7 +507,7 @@ fi # Store ACPI tables in /var/db/acpi to be used by sendbug(1). if [[ -x /usr/sbin/acpidump ]]; then - acpidump -o /var/db/acpi/ + acpidump -q -o /var/db/acpi/ fi if [[ $check_quotas == YES ]]; then