diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-09-09 21:28:39 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-09-10 20:09:02 +0000 |
commit | 46e109f2747bf1465a9b879e138eef496e52a1e4 (patch) | |
tree | 953436005a0fb298e91652c1f3917775b361c456 /util | |
parent | 64246480a656b2eba8a895a962787051ee2d4378 (diff) |
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.nix | 6 |
1 files changed, 5 insertions, 1 deletions
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; |