~ubuntu-cdimage/debian-cd/ubuntu

« back to all changes in this revision

Viewing changes to CONF.sh

  • Committer: Steve Langasek
  • Date: 2020-05-28 18:25:34 UTC
  • Revision ID: steve.langasek@canonical.com-20200528182534-2p91wl4v697xt9sq
Bump all groovy builds to use newer xorriso (1.4.2 from xenial instead of vendored 1.2.4).

Show diffs side-by-side

added added

removed removed

Lines of Context:
450
450
# mkisofs/genisoimage. Allows creation of isohybrid images: ISO images
451
451
# that will burn correctly onto a CD and also can be written raw to a
452
452
# USB stick. xorriso 0.6.5 and later has working support for this.
 
453
export i386_MKISOFS="xorriso"
 
454
export i386_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
 
455
export amd64_MKISOFS="xorriso"
 
456
export amd64_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
 
457
export arm64_MKISOFS="xorriso"
 
458
export arm64_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
 
459
 
453
460
case $DIST in
454
 
  warty|hoary|breezy|dapper|edgy|feisty|gutsy|hardy|intrepid|jaunty|karmic|lucid|maverick|natty)
 
461
  groovy)
 
462
    # switch to modern xorriso for all arches
 
463
    export MKISOFS=xorriso
 
464
    export MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
455
465
    ;;
456
466
  *)
457
 
    export i386_MKISOFS="xorriso"
458
 
    export i386_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
459
 
    export amd64_MKISOFS="xorriso"
460
 
    export amd64_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
461
 
    export arm64_MKISOFS="xorriso"
462
 
    export arm64_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
463
 
    # temporary hack until such time as we can upgrade all builds to 1.2.4
 
467
    # temporary hack until such time as we can upgrade all builds to 1.4.2
464
468
    new_xorriso="/home/cdimage/xorriso/xorriso-1.2.4/xorriso/xorriso"
465
469
    if [ -x "$new_xorriso" ]; then
466
470
      export amd64_MKISOFS="$new_xorriso"