~ubuntu-branches/ubuntu/trusty/debian-cd/trusty-proposed

« back to all changes in this revision

Viewing changes to debian/CONF.sh

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre, Steve McIntyre
  • Date: 2011-02-02 23:37:54 UTC
  • Revision ID: james.westby@ubuntu.com-20110202233754-owq5ht7tpqi1yxr2
Tags: 3.1.5
[ Steve McIntyre ]
* Final upload for squeeze.
* Pass the base mkisofs options into make_disc_trees too.
* Switch to --iso-level 4 for powerpc images to make them work better
  with POWER machines. Thanks to Milan Kupcevic for the patch.
  Closes: #603536
* Add code to make isohybrid images for i386/amd64:
  + Makefile: Add support for overriding the MKISOFS and MKISOFS_OPTS
    variables on a per-arch basis
  + CONF.sh: add working examples for this
  + CONF.sh: fix up the -jigdo-min-file-size option to use 1024 instead
    of 0; genisoimage used to fix this up, but xorriso doesn't.
  + tools/boot/squeeze/boot-x86: if configured to use xorriso, add the
    extra command line options to add the isohybrid MBR. Also work
    around a difference in ISO directory naming between genisoimage and
    xorriso.
  + Closes: #551951
* Drop the recommended size for BD-ROMs slightly, on the recommendation
  of Thomas Schmitt. This will make it more likely that we'll fit on
  all media.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
# export MKISOFS_OPTS="-r"              #For normal users
170
170
# export MKISOFS_OPTS="-r -F ." #For symlink farmers
171
171
 
 
172
# Override for i386 and amd64 to use xorriso instead of
 
173
# mkisofs/genisoimage. Allows creation of isohybrid images: ISO images
 
174
# that will burn correctly onto a CD and also can be written raw to a
 
175
# USB stick. xorriso 0.6.5 and later has working support for this.
 
176
#export i386_MKISOFS="xorriso"
 
177
#export i386_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
 
178
#export amd64_MKISOFS="xorriso"
 
179
#export amd64_MKISOFS_OPTS="-as mkisofs -r -checksum_algorithm_iso md5,sha1"
 
180
 
172
181
# ISOLinux support for multiboot on CD1 for i386
173
182
export ISOLINUX=1
174
183
 
297
306
 
298
307
# Specify the minimum file size to consider for jigdo processing. Any files
299
308
# smaller than this will simply be placed straight into the template file.
300
 
export JIGDO_OPTS="-jigdo-min-file-size 0"
 
309
export JIGDO_OPTS="-jigdo-min-file-size 1024"
301
310
 
302
311
for EXCL in $JIGDO_EXCLUDE; do
303
312
        JIGDO_OPTS="$JIGDO_OPTS -jigdo-exclude $EXCL"