1999-11-11 16:10:37 -01:00
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
# Copyright 1999 Rapha<68>l Hertzog <hertzog@debian.org>
|
|
|
|
|
# See the README file for the license.
|
|
|
|
|
|
|
|
|
|
# This script does output additionnal mkisofs options
|
|
|
|
|
# depending on the ARCH and the CD number.
|
|
|
|
|
|
|
|
|
|
# Type can be "bin" or "src"
|
|
|
|
|
TYPE=$1
|
|
|
|
|
# The CD number
|
|
|
|
|
CD=$2
|
|
|
|
|
|
|
|
|
|
# No additional options by default
|
|
|
|
|
OPTS=
|
|
|
|
|
|
|
|
|
|
case "$ARCH" in
|
|
|
|
|
i386)
|
|
|
|
|
OPTS="-J"
|
|
|
|
|
;;
|
2004-12-08 21:41:18 -01:00
|
|
|
|
amd64)
|
|
|
|
|
OPTS="-J"
|
|
|
|
|
;;
|
1999-11-11 16:10:37 -01:00
|
|
|
|
alpha)
|
|
|
|
|
OPTS="-J"
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
#No options by default
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|
echo -n "$OPTS "
|
|
|
|
|
|