diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-29 19:11:23 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-29 19:11:23 +0000 |
commit | 1556b35a2faca162736df1158e2119c362b02fd2 (patch) | |
tree | 167e16f6a5ced6ed144790b9aa8abc3c89f00cae /make_boot_img | |
parent | adf525fea76f398585d56bde6f481826cffec518 (diff) | |
download | drakx-1556b35a2faca162736df1158e2119c362b02fd2.tar drakx-1556b35a2faca162736df1158e2119c362b02fd2.tar.gz drakx-1556b35a2faca162736df1158e2119c362b02fd2.tar.bz2 drakx-1556b35a2faca162736df1158e2119c362b02fd2.tar.xz drakx-1556b35a2faca162736df1158e2119c362b02fd2.zip |
- deprecate "hdreiser.img" since we have room for "reiserfs.o" in "hd.img"
- following deprecation of "other.img", reintegrate big modules in relevant boot disks
Diffstat (limited to 'make_boot_img')
-rwxr-xr-x | make_boot_img | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/make_boot_img b/make_boot_img index 39bfdcbdc..85f10856d 100755 --- a/make_boot_img +++ b/make_boot_img @@ -1,6 +1,6 @@ #!/usr/bin/perl -@ARGV >= 2 or die "usage: $0 <image> all|other|cdrom|hd|hdreiser|network|blank|pcmcia|live|tftp|tftprd\n"; +@ARGV >= 2 or die "usage: $0 <image> all|other|cdrom|hd|network|blank|pcmcia|live|tftp|tftprd\n"; use Config; Config->import; @@ -35,7 +35,6 @@ $install = $ {{ network => "stage1-network", cdrom => "stage1-cdrom", hd => "stage1-disk", - hdreiser => "stage1-disk", live64 => "stage1-full", tftp64 => "stage1-full", tftprd64 => "stage1-full", @@ -87,7 +86,7 @@ sub boot_img_i386 { __ "$sudo umount $mnt 2>/dev/null"; my $automatic = ""; - if ($type eq "hd" || $type eq "hdreiser") { + if ($type eq "hd") { _ "bunzip2 -c $instdir/init-data/msgboot.img.bz2 > $img"; $automatic = "automatic=method:disk"; } elsif ($type eq "all") { |