mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The current version of mkisofs is warning us that the -P option will
be changing with the next version, and we should be using -publisher instead. Also warned by: trhodes MFC after: 1 week
This commit is contained in:
parent
40c378386c
commit
9253618760
5 changed files with 5 additions and 5 deletions
|
|
@ -52,7 +52,7 @@ fi
|
|||
LABEL=$1; shift
|
||||
NAME=$1; shift
|
||||
|
||||
mkisofs -r -J -V $LABEL -P "$publisher" -o $NAME $*
|
||||
mkisofs -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
|
||||
|
||||
type setcdboot 2>&1 | grep " is " >/dev/null
|
||||
if [ $? -ne 0 ]; then
|
||||
|
|
|
|||
|
|
@ -54,4 +54,4 @@ fi
|
|||
LABEL=$1; shift
|
||||
NAME=$1; shift
|
||||
|
||||
mkisofs $bootable -r -J -V $LABEL -P "$publisher" -o $NAME $*
|
||||
mkisofs $bootable -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
|
||||
|
|
|
|||
|
|
@ -54,4 +54,4 @@ fi
|
|||
LABEL=$1; shift
|
||||
NAME=$1; shift
|
||||
|
||||
mkisofs $bootable -r -J -V $LABEL -P "$publisher" -o $NAME $*
|
||||
mkisofs $bootable -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
|
||||
|
|
|
|||
|
|
@ -91,6 +91,6 @@ fi
|
|||
|
||||
publisher="The FreeBSD Project. http://www.freebsd.org/"
|
||||
|
||||
$MKISOFS $BOOTOPTS -r -J -V $LABEL -P "$publisher" -o $NAME $BASE $*
|
||||
$MKISOFS $BOOTOPTS -r -J -V $LABEL -publisher "$publisher" -o $NAME $BASE $*
|
||||
rm -f $BASE/$EFIPART
|
||||
exit 0
|
||||
|
|
|
|||
|
|
@ -66,5 +66,5 @@ fi
|
|||
LABEL=$1; shift
|
||||
NAME=$1; shift
|
||||
|
||||
mkisofs $bootable -r -J -V $LABEL -P "$publisher" -o $NAME $*
|
||||
mkisofs $bootable -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
|
||||
rm -f ${IMG}
|
||||
|
|
|
|||
Loading…
Reference in a new issue