diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-12-07 14:39:51 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-12-07 14:39:51 +0000 |
commit | 812daa857da2031113569cd0a8fee2abc0ec50ca (patch) | |
tree | e46b2f31c3f450fcf8f8c7722a1f21add0e62a93 | |
parent | eb44d500ead0965878f95b40a6b9bd19c83d4234 (diff) | |
download | drakx-812daa857da2031113569cd0a8fee2abc0ec50ca.tar drakx-812daa857da2031113569cd0a8fee2abc0ec50ca.tar.gz drakx-812daa857da2031113569cd0a8fee2abc0ec50ca.tar.bz2 drakx-812daa857da2031113569cd0a8fee2abc0ec50ca.tar.xz drakx-812daa857da2031113569cd0a8fee2abc0ec50ca.zip |
use syslinux -s, "safe, slow and stupid" version of SYSLINUX
-rwxr-xr-x | tools/draklive | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/draklive b/tools/draklive index 1b3d44a98..aaea54715 100755 --- a/tools/draklive +++ b/tools/draklive @@ -469,7 +469,8 @@ sub record_master { } } run_('umount', $live->{mnt}); - run_("syslinux $device") or die "unable to run syslinux on $device"; + #- use syslinux -s, "safe, slow and stupid" version of SYSLINUX + run_('syslinux', '-s', $device) or die "unable to run syslinux on $device"; } else { warn "not implemented yet"; } |