diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-07-05 13:59:37 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-07-05 13:59:37 +0000 |
commit | 6e072ae33680c4c5d31baa081e0a6d3feac22861 (patch) | |
tree | f9800f7d0ce9d362371bb560e2ce4b3c04474448 /rescue-Flash/build | |
parent | 5bf0ea82a312b21ed600c615f75953efcd203363 (diff) | |
download | drakx-6e072ae33680c4c5d31baa081e0a6d3feac22861.tar drakx-6e072ae33680c4c5d31baa081e0a6d3feac22861.tar.gz drakx-6e072ae33680c4c5d31baa081e0a6d3feac22861.tar.bz2 drakx-6e072ae33680c4c5d31baa081e0a6d3feac22861.tar.xz drakx-6e072ae33680c4c5d31baa081e0a6d3feac22861.zip |
remove rescue-Flash/ (rescue-gui will be merged back with original one, and build script will be in rescue/)
Diffstat (limited to 'rescue-Flash/build')
-rwxr-xr-x | rescue-Flash/build | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/rescue-Flash/build b/rescue-Flash/build deleted file mode 100755 index cc6ece4d1..000000000 --- a/rescue-Flash/build +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh - -output_name="FLASHRESCUE" -output_file="flashrescue.iso" - -rm -f $output - -echo -n "Gerando imagem ISO de $output_name: " - -cd root - -genisoimage -o ../$output_file \ - -b i586/isolinux/isolinux.bin \ - -c i586/isolinux/boot.cat \ - -input-charset ISO-8859-1 \ - -no-emul-boot \ - -boot-load-size 4 \ - -J -R -l \ - -quiet \ - -V $output_name \ - -boot-info-table . - -if [ $? -eq 0 ]; then - output_size=$(ls -lah ../$output_file | awk '{ print $5 }') - echo "ok [$output_size]." - md5=$(md5sum ../$output_file | awk '{ print $1 }') - echo " md5: $md5" -else - echo "erro." -fi - -cd - > /dev/null |