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>
This commit is contained in:
Felix Singer 2021-09-09 21:28:39 +02:00
parent 64246480a6
commit 46e109f274
1 changed files with 5 additions and 1 deletions

View File

@ -22,7 +22,11 @@
environment.variables.GC_INITIAL_HEAP_SIZE = "1M"; environment.variables.GC_INITIAL_HEAP_SIZE = "1M";
boot = { boot = {
kernelParams = [ "console=ttyS0,115200" "console=tty0" ]; kernelParams = [
"console=ttyS0,115200"
"console=tty0"
"iomem=relaxed"
];
# pkgs.linuxPackages == lts # pkgs.linuxPackages == lts
# pkgs.linuxPackages_latest == stable # pkgs.linuxPackages_latest == stable
kernelPackages = pkgs.linuxPackages; kernelPackages = pkgs.linuxPackages;