2009-08-31 15:40:57 +02:00
|
|
|
# This module allows the test driver to connect to the virtual machine
|
|
|
|
# via a root shell attached to port 514.
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2009-10-12 20:09:34 +02:00
|
|
|
jobs.backdoor =
|
2009-12-08 12:41:21 +01:00
|
|
|
{ startOn = "started network-interfaces";
|
2009-08-31 15:40:57 +02:00
|
|
|
|
|
|
|
preStart =
|
|
|
|
''
|
2010-01-04 19:04:57 +01:00
|
|
|
echo "guest running" > /dev/ttyS0
|
|
|
|
echo "===UP===" > dev/ttyS0
|
2009-08-31 15:40:57 +02:00
|
|
|
'';
|
|
|
|
|
2010-01-06 00:59:29 +01:00
|
|
|
script =
|
|
|
|
''
|
|
|
|
export HOME=/root
|
|
|
|
export DISPLAY=:0.0
|
|
|
|
export GCOV_PREFIX=/tmp/coverage-data
|
|
|
|
source /etc/bashrc
|
|
|
|
cd /tmp
|
|
|
|
exec ${pkgs.socat}/bin/socat tcp-listen:514,fork exec:/bin/sh 2> /dev/ttyS0
|
|
|
|
'';
|
2009-08-31 15:40:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
boot.postBootCommands =
|
|
|
|
''
|
2010-01-04 10:51:57 +01:00
|
|
|
# Panic on out-of-memory conditions rather than letting the
|
|
|
|
# OOM killer randomly get rid of processes, since this leads
|
|
|
|
# to failures that are hard to diagnose.
|
|
|
|
echo 2 > /proc/sys/vm/panic_on_oom
|
|
|
|
|
|
|
|
# Coverage data is written into /tmp/coverage-data. Symlink
|
|
|
|
# it to the host filesystem so that we don't need to copy it
|
|
|
|
# on shutdown.
|
2009-08-31 15:40:57 +02:00
|
|
|
( eval $(cat /proc/cmdline)
|
|
|
|
mkdir /hostfs/$hostTmpDir/coverage-data
|
|
|
|
ln -s /hostfs/$hostTmpDir/coverage-data /tmp/coverage-data
|
|
|
|
)
|
2010-01-04 14:22:43 +01:00
|
|
|
|
|
|
|
# Mount debugfs to gain access to the kernel coverage data (if
|
|
|
|
# available).
|
|
|
|
mount -t debugfs none /sys/kernel/debug || true
|
2009-08-31 15:40:57 +02:00
|
|
|
'';
|
2009-09-02 00:50:46 +02:00
|
|
|
|
|
|
|
# If the kernel has been built with coverage instrumentation, make
|
|
|
|
# it available under /proc/gcov.
|
|
|
|
boot.kernelModules = [ "gcov-proc" ];
|
2010-01-04 19:04:57 +01:00
|
|
|
|
|
|
|
# Panic if an error occurs in stage 1 (rather than waiting for
|
|
|
|
# user intervention).
|
|
|
|
boot.kernelParams = [ "stage1panic" ];
|
2010-01-06 00:38:13 +01:00
|
|
|
|
|
|
|
# `xwininfo' is used by the test driver to query open windows.
|
|
|
|
environment.systemPackages = [ pkgs.xorg.xwininfo ];
|
2009-09-02 00:50:46 +02:00
|
|
|
|
2009-08-31 15:40:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|