mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
* Use SCSI instead of IDE, much faster.
svn path=/nixpkgs/trunk/; revision=11165
This commit is contained in:
parent
2a20ef9694
commit
0301a74bf0
1 changed files with 7 additions and 8 deletions
|
@ -5,8 +5,7 @@ rec {
|
|||
|
||||
modulesClosure = makeModulesClosure {
|
||||
inherit kernel;
|
||||
#rootModules = ["cifs" "ne2k_pci" "nls_utf8" "ata_piix" "sd_mod"];
|
||||
rootModules = ["cifs" "ne2k_pci" "nls_utf8" "ide_disk" "ide_generic"];
|
||||
rootModules = ["cifs" "ne2k_pci" "nls_utf8" "ata_piix" "sd_mod"];
|
||||
};
|
||||
|
||||
|
||||
|
@ -84,7 +83,7 @@ rec {
|
|||
if test -z "$mountDisk"; then
|
||||
mount -t tmpfs none /fs
|
||||
else
|
||||
mount -t ext2 /dev/hda /fs
|
||||
mount -t ext2 /dev/sda /fs
|
||||
fi
|
||||
|
||||
mkdir -p /fs/hostfs
|
||||
|
@ -230,8 +229,8 @@ rec {
|
|||
|
||||
buildCommand = ''
|
||||
mkdir /mnt
|
||||
${e2fsprogs}/sbin/mke2fs -F /dev/hda
|
||||
${klibcShrunk}/bin/mount -t ext2 /dev/hda /mnt
|
||||
${e2fsprogs}/sbin/mke2fs -F /dev/sda
|
||||
${klibcShrunk}/bin/mount -t ext2 /dev/sda /mnt
|
||||
|
||||
mkdir /mnt/proc /mnt/dev /mnt/sys
|
||||
|
||||
|
@ -262,7 +261,7 @@ rec {
|
|||
|
||||
test2 = fillDiskWithRPMs {
|
||||
size = 1024;
|
||||
name = "test";
|
||||
name = "testY";
|
||||
fullName = "Test Image";
|
||||
rpms = import ./rpm/fedora-3-packages.nix {inherit fetchurl;};
|
||||
};
|
||||
|
@ -337,8 +336,8 @@ rec {
|
|||
|
||||
buildCommand = ''
|
||||
mkdir /mnt
|
||||
${e2fsprogs}/sbin/mke2fs -F /dev/hda
|
||||
${klibcShrunk}/bin/mount -t ext2 /dev/hda /mnt
|
||||
${e2fsprogs}/sbin/mke2fs -F /dev/sda
|
||||
${klibcShrunk}/bin/mount -t ext2 /dev/sda /mnt
|
||||
|
||||
if test -e /mnt/.debug; then
|
||||
exec ${bash}/bin/sh
|
||||
|
|
Loading…
Reference in a new issue