debian-cd-clone/tools/set_mkisofs_opts

40 lines
636 B
Plaintext
Raw Normal View History

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 --joliet-long"
1999-11-11 16:10:37 -01:00
;;
2004-12-08 21:41:18 -01:00
amd64)
OPTS="-J --joliet-long"
2004-12-08 21:41:18 -01:00
;;
1999-11-11 16:10:37 -01:00
alpha)
OPTS="-J --joliet-long"
;;
arm*)
OPTS="-J --joliet-long"
;;
s390*)
OPTS="-J --joliet-long"
1999-11-11 16:10:37 -01:00
;;
*)
#No options by default - don't know about other arches
1999-11-11 16:10:37 -01:00
;;
esac
echo -n "$OPTS "