diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-12-15 18:30:03 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-12-15 18:30:03 +0000 |
commit | 46c07cbbef963d0127fc557436136080bac63b9a (patch) | |
tree | 31aa735d6d9cc693bf0bdd0d33e3f370f33e33da /tools/draklive | |
parent | 4747676f06629f79c8b785267f9940e508bf05f4 (diff) | |
download | drakx-46c07cbbef963d0127fc557436136080bac63b9a.tar drakx-46c07cbbef963d0127fc557436136080bac63b9a.tar.gz drakx-46c07cbbef963d0127fc557436136080bac63b9a.tar.bz2 drakx-46c07cbbef963d0127fc557436136080bac63b9a.tar.xz drakx-46c07cbbef963d0127fc557436136080bac63b9a.zip |
it's useless to pre-create sdX devices, nash will do it
Diffstat (limited to 'tools/draklive')
-rwxr-xr-x | tools/draklive | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/draklive b/tools/draklive index 6a2a670fb..0bee1a415 100755 --- a/tools/draklive +++ b/tools/draklive @@ -293,8 +293,7 @@ sub create_initrd { devices::make($live->{initrd_tree} . "/dev/$_") foreach qw(console initrd null ram systty), (map { "tty$_" } 0..5), - (map { "loop$_" } 0..7), - (map { $_, $_ . '1' } map { "sd$_" } ('a' .. 'h')); + (map { "loop$_" } 0..7); load_moddeps($live->{system}{root}, "/lib/modules/" . $live->{system}{kernel}); |