about summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-07-16 05:03:02 +0200
committeraszlig <aszlig@redmoonstudios.org>2014-07-16 05:03:02 +0200
commita724d91496a97acf3fb7ca282cd175cbec1a7dad (patch)
tree2c51918478d191aa6868159806838e79846aa540
parent312e18776e3764f8d7f0df404c3cf3eae44ed585 (diff)
kconf: Enable multiple devpts instances.
This is needed in order to run NixOS VM tests, because within the chroot
the test driver starts the VDE switch, which in turn relies on
posix_openpt() to function correctly.

Which unfortunately doesn't, because CONFIG_DEVPTS_MULTIPLE_INSTANCES
was not set so far.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--machines/dnyarri-kconf.nix1
-rw-r--r--machines/mmrnmhrm-kconf.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/machines/dnyarri-kconf.nix b/machines/dnyarri-kconf.nix
index 7b8b43f3..0499c14c 100644
--- a/machines/dnyarri-kconf.nix
+++ b/machines/dnyarri-kconf.nix
@@ -776,6 +776,7 @@
   "CONFIG_HW_CONSOLE" = "y";
   "CONFIG_VT_HW_CONSOLE_BINDING" = "y";
   "CONFIG_UNIX98_PTYS" = "y";
+  "CONFIG_DEVPTS_MULTIPLE_INSTANCES" = "y";
   "CONFIG_DEVKMEM" = "y";
   "CONFIG_FIX_EARLYCON_MEM" = "y";
   "CONFIG_NVRAM" = "m";
diff --git a/machines/mmrnmhrm-kconf.nix b/machines/mmrnmhrm-kconf.nix
index a19010be..fb0e22df 100644
--- a/machines/mmrnmhrm-kconf.nix
+++ b/machines/mmrnmhrm-kconf.nix
@@ -550,6 +550,7 @@
   "CONFIG_HW_CONSOLE" = "y";
   "CONFIG_VT_HW_CONSOLE_BINDING" = "y";
   "CONFIG_UNIX98_PTYS" = "y";
+  "CONFIG_DEVPTS_MULTIPLE_INSTANCES" = "y";
   "CONFIG_DEVKMEM" = "y";
   "CONFIG_HVC_DRIVER" = "y";
   "CONFIG_VIRTIO_CONSOLE" = "m";