From 81856426cf3d82cee7ae36a3ee762cf78bf911c2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 26 Nov 2006 22:57:35 +0000 Subject: [PATCH] * Run the virtual consoles in 1024x768x16. svn path=/nixu/trunk/; revision=7136 --- test/system-configuration.nix | 4 ++++ test/system-configuration.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/test/system-configuration.nix b/test/system-configuration.nix index b357683f4464..dee0461c2e40 100644 --- a/test/system-configuration.nix +++ b/test/system-configuration.nix @@ -15,6 +15,9 @@ let readOnlyRoot = false; }; + # Extra kernel command line arguments. + extraKernelParams = "vga=0x317 console=tty1 splash=verbose"; + in with bootEnv; @@ -31,6 +34,7 @@ rec { inherit grubMenuBuilder; kernel = pkgs.kernel + "/vmlinuz"; initrd = initialRamdisk + "/initrd"; + inherit extraKernelParams; }; diff --git a/test/system-configuration.sh b/test/system-configuration.sh index 06472ae8d837..11254a24d0a9 100644 --- a/test/system-configuration.sh +++ b/test/system-configuration.sh @@ -6,7 +6,7 @@ ln -s $kernel $out/kernel ln -s $grub $out/grub cat > $out/menu.lst << GRUBEND -kernel $kernel selinux=0 apm=on acpi=on init=$bootStage2 +kernel $kernel selinux=0 apm=on acpi=on init=$bootStage2 $extraKernelParams initrd $initrd GRUBEND