summary refs log tree commit diff
path: root/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
diff options
context:
space:
mode:
authorLluis Batlle <viriketo@gmail.com>2013-03-25 21:56:41 +0100
committerLluis Batlle <viriketo@gmail.com>2013-03-25 21:57:18 +0100
commit8881d1a920aa92b095086fe89b645c9d1f5490be (patch)
tree3c2ab91b5667f69f55cfdd3e259a04c10146a5de /modules/installer/cd-dvd/system-tarball-sheevaplug.nix
parent1568b6858d75793279d5bf3565345a33fb95a973 (diff)
downloadnixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar.gz
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar.bz2
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar.lz
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar.xz
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.tar.zst
nixpkgs-8881d1a920aa92b095086fe89b645c9d1f5490be.zip
Fixing the system tarball for the sheevaplug
Diffstat (limited to 'modules/installer/cd-dvd/system-tarball-sheevaplug.nix')
-rw-r--r--modules/installer/cd-dvd/system-tarball-sheevaplug.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
index 52df5a56ee7..06a02333062 100644
--- a/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
+++ b/modules/installer/cd-dvd/system-tarball-sheevaplug.nix
@@ -42,7 +42,6 @@ in
   require =
     [
       ./system-tarball.nix
-      ../../hardware/network/rt73.nix
     ];
 
   # Disable some other stuff we don't need.
@@ -87,7 +86,6 @@ in
       pkgs.bvi # binary editor
       pkgs.joe
     ];
-*/
 
   boot.loader.grub.enable = false;
   boot.loader.generationsDir.enable = false;
@@ -134,8 +132,6 @@ in
   ];
 
   services.mingetty = {
-    ttys = [ "ttyS0" ];
-
     # Some more help text.
     helpLine = ''
       Log in as "root" with an empty password.  ${
@@ -177,6 +173,9 @@ in
   services.ttyBackgrounds.enable = false;
   jobs.openssh.startOn = pkgs.lib.mkOverrideTemplate 50 {} "";
 
+  # cpufrequtils fails to build on non-pc
+  powerManagement.enable = false;
+
   nixpkgs.config = {
     platform = pkgs.platforms.sheevaplug;
   };