From 46e109f2747bf1465a9b879e138eef496e52a1e4 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Thu, 9 Sep 2021 21:28:39 +0200 Subject: [PATCH] util/liveiso: Disable strict checking of access to MMIO memory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie859490d3cb3b8c56437cbd6c3e46525c580d3f4 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/57535 Reviewed-by: Michael Niewöhner Tested-by: build bot (Jenkins) --- util/liveiso/common.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/util/liveiso/common.nix b/util/liveiso/common.nix index 941e62499a..45cf84202f 100644 --- a/util/liveiso/common.nix +++ b/util/liveiso/common.nix @@ -22,7 +22,11 @@ environment.variables.GC_INITIAL_HEAP_SIZE = "1M"; boot = { - kernelParams = [ "console=ttyS0,115200" "console=tty0" ]; + kernelParams = [ + "console=ttyS0,115200" + "console=tty0" + "iomem=relaxed" + ]; # pkgs.linuxPackages == lts # pkgs.linuxPackages_latest == stable kernelPackages = pkgs.linuxPackages;