Author: viric
Date: Fri May 25 07:52:12 2012
New Revision: 34237
URL: https://nixos.org/websvn/nix/?rev=34237&sc=1
Log:
Making the sheevaplug system tarball evaluate fine again. It had some pieces
not up to date:
fileSystems definition, kernel version, ...
Modified:
nixos/trunk/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
Modified: nixos/trunk/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
==============================================================================
--- nixos/trunk/modules/installer/cd-dvd/system-tarball-sheevaplug.nix Fri May
25 07:38:44 2012 (r34236)
+++ nixos/trunk/modules/installer/cd-dvd/system-tarball-sheevaplug.nix Fri May
25 07:52:12 2012 (r34237)
@@ -40,7 +40,7 @@
{
require =
- [ options
+ [
./system-tarball.nix
../../hardware/network/rt73.nix
];
@@ -120,7 +120,17 @@
# "console=ttyS0,115200n8" # serial console
];
- boot.kernelPackages = pkgs.linuxPackages_2_6_35;
+ boot.kernelPackages = pkgs.linuxPackages_3_4;
+
+ boot.supportedFilesystems = [ "reiserfs" ];
+
+ /* fake entry, just to have a happy stage-1. Users
+ may boot without having stage-1 though */
+ fileSystems = [
+ { mountPoint = "/";
+ device = "/dev/something";
+ }
+ ];
services.mingetty = {
ttys = [ "ttyS0" ];
@@ -166,6 +176,9 @@
services.ttyBackgrounds.enable = false;
jobs.openssh.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
+ # Needed for nixos to evaluate
+ system.build.menuBuilder = "true";
+
nixpkgs.config = {
platform = pkgs.platforms.sheevaplug;
};
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits