diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-12-22 18:46:14 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-12-22 18:46:14 +0000 |
commit | df0acb15eedca951df8f2af513e439ecb9a792f1 (patch) | |
tree | 8615cf80f01dec62bd49710b1f3eb49c53f2dc92 | |
parent | b1bca3aa6d401b53c65b7dfec75ace4aa543674d (diff) | |
download | drakx-df0acb15eedca951df8f2af513e439ecb9a792f1.tar drakx-df0acb15eedca951df8f2af513e439ecb9a792f1.tar.gz drakx-df0acb15eedca951df8f2af513e439ecb9a792f1.tar.bz2 drakx-df0acb15eedca951df8f2af513e439ecb9a792f1.tar.xz drakx-df0acb15eedca951df8f2af513e439ecb9a792f1.zip |
typo in "automatic" parameters
-rwxr-xr-x | make_boot_img | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make_boot_img b/make_boot_img index 86a0c42fb..ead18c786 100755 --- a/make_boot_img +++ b/make_boot_img @@ -92,12 +92,12 @@ sub boot_img_i386 { if ($type eq "hd") { _ "bunzip2 -c $instdir/init-data/msgboot.img.bz2 > $img"; - $automatic = "automatic=type:disk"; + $automatic = "automatic=method:disk"; } elsif ($type eq "all") { _ "bunzip2 -c $instdir/init-data/msgboot-graphicallogo-2880.img.bz2 > $img"; } else { _ "bunzip2 -c $instdir/init-data/msgboot-graphicallogo.img.bz2 > $img"; - $automatic = "automatic=type:cdrom" if ($type eq "cdrom"); + $automatic = "automatic=method:cdrom" if ($type eq "cdrom"); } _ "$sudo mount -t msdos -o umask=0 $img $mnt -o loop"; _ "cat vmlinuz > $mnt/vmlinuz" if $type !~ /blank/; |