summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2021-09-09 21:28:39 +0200
committerFelix Singer <felixsinger@posteo.net>2021-09-10 20:09:02 +0000
commit46e109f2747bf1465a9b879e138eef496e52a1e4 (patch)
tree953436005a0fb298e91652c1f3917775b361c456 /util
parent64246480a656b2eba8a895a962787051ee2d4378 (diff)
downloadcoreboot-46e109f2747bf1465a9b879e138eef496e52a1e4.tar.gz
coreboot-46e109f2747bf1465a9b879e138eef496e52a1e4.tar.bz2
coreboot-46e109f2747bf1465a9b879e138eef496e52a1e4.zip
util/liveiso: Disable strict checking of access to MMIO memory
Change-Id: Ie859490d3cb3b8c56437cbd6c3e46525c580d3f4 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/57535 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r--util/liveiso/common.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/liveiso/common.nix b/util/liveiso/common.nix
index 941e62499ab5..45cf84202f72 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;