* Run the virtual consoles in 1024x768x16.

svn path=/nixu/trunk/; revision=7136
This commit is contained in:
Eelco Dolstra 2006-11-26 22:57:35 +00:00
parent 66574e789c
commit 81856426cf
2 changed files with 5 additions and 1 deletions

View File

@ -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;
};

View File

@ -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