summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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;