From 8881d1a920aa92b095086fe89b645c9d1f5490be Mon Sep 17 00:00:00 2001 From: Lluis Batlle Date: Mon, 25 Mar 2013 21:56:41 +0100 Subject: [PATCH] Fixing the system tarball for the sheevaplug --- modules/installer/cd-dvd/system-tarball-sheevaplug.nix | 7 +++---- 1 file 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 52df5a56ee7b..06a023330626 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; };