diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-02-25 13:33:44 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-02-25 13:33:44 +0000 |
commit | 9d192ce84debadadea2349b471382a0222d96af8 (patch) | |
tree | 61fd9804da8bb0ca514e5e361f0a87fa16b34943 /make_boot_img | |
parent | 6c301e1487a9a0130a6081fdb4f9b16cf7cf16a2 (diff) | |
download | drakx-9d192ce84debadadea2349b471382a0222d96af8.tar drakx-9d192ce84debadadea2349b471382a0222d96af8.tar.gz drakx-9d192ce84debadadea2349b471382a0222d96af8.tar.bz2 drakx-9d192ce84debadadea2349b471382a0222d96af8.tar.xz drakx-9d192ce84debadadea2349b471382a0222d96af8.zip |
(boot_img_i386): mount as vfat instead of msdos
Diffstat (limited to 'make_boot_img')
-rwxr-xr-x | make_boot_img | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_boot_img b/make_boot_img index 85f10856d..1d9daecd0 100755 --- a/make_boot_img +++ b/make_boot_img @@ -95,7 +95,7 @@ sub boot_img_i386 { _ "bunzip2 -c $instdir/init-data/msgboot-graphicallogo.img.bz2 > $img"; $automatic = "automatic=method:cdrom" if ($type eq "cdrom"); } - _ "$sudo mount -t msdos -o umask=0 $img $mnt -o loop"; + _ "$sudo mount -t vfat -o umask=0 $img $mnt -o loop"; _ "cat vmlinuz > $mnt/vmlinuz" if $type !~ /blank/; -f "$type.rdz" ? _ "cp -f $type.rdz $mnt" : initrd("${mnt}2", "$mnt/$type.rdz"); |