fix text encoding

This commit is contained in:
George Danchev 2011-06-22 13:33:10 +00:00
parent 57ab047e36
commit 961e6c4859
1 changed files with 34 additions and 34 deletions

View File

@ -1,34 +1,34 @@
#!/bin/sh
set -e
DIR=${1}
IMG=${2}
jigdo-gen-md5-list ${DIR} > ${IMG}.md5
xorriso \
-as mkisofs \
-o ${IMG}.iso \
-R -V 'TEST_1' \
-partition_offset 16 \
-J -joliet-long \
\
-jigdo-template-compress gzip \
-checksum_algorithm_iso md5,sha512 \
-checksum_algorithm_template md5,sha512 \
-jigdo-jigdo ${IMG}.jigdo \
-jigdo-template ${IMG}.template \
-jigdo-map Debian=${DIR} \
-md5-list ${IMG}.md5 \
-jigdo-min-file-size 1024 \
\
${DIR}
jigit-mkimage \
-t ${IMG}.template \
-j ${IMG}.jigdo \
-m Debian=${DIR} \
-o ${IMG}.bak
diff ${IMG}.iso ${IMG}.bak
#!/bin/sh
set -e
DIR=${1}
IMG=${2}
jigdo-gen-md5-list ${DIR} > ${IMG}.md5
xorriso \
-as mkisofs \
-o ${IMG}.iso \
-R -V 'TEST_1' \
-partition_offset 16 \
-J -joliet-long \
\
-jigdo-template-compress gzip \
-checksum_algorithm_iso md5,sha512 \
-checksum_algorithm_template md5,sha512 \
-jigdo-jigdo ${IMG}.jigdo \
-jigdo-template ${IMG}.template \
-jigdo-map Debian=${DIR} \
-md5-list ${IMG}.md5 \
-jigdo-min-file-size 1024 \
\
${DIR}
jigit-mkimage \
-t ${IMG}.template \
-j ${IMG}.jigdo \
-m Debian=${DIR} \
-o ${IMG}.bak
diff ${IMG}.iso ${IMG}.bak