mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove -a from mkisofs' argument list. It's the default for version 1.12.1
and up and causes mkisofs to fail if present. Add $FreeBSD$ while I'm here. Ok'ed by: jkh
This commit is contained in:
parent
2db39860cf
commit
8b2f7124cf
1 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# usage: makecdfs "cd title" input-tree output-file "copyright string"
|
||||
#
|
||||
# For example:
|
||||
|
|
@ -23,5 +25,5 @@ else
|
|||
tree=$1; shift
|
||||
outfile=$1; shift
|
||||
copyright="$*"
|
||||
mkisofs $bootable -a -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree
|
||||
mkisofs $bootable -d -N -D -R -T -V "$title" -P "$copyright" -o $outfile $tree
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue