use mktemp instead of tempfile in combined-image.sh to make it work on OS X
SVN-Revision: 17674
This commit is contained in:
parent
6478e24f7d
commit
f58536ff83
1 changed files with 2 additions and 2 deletions
|
@ -8,8 +8,8 @@ BLKSZ=65536
|
||||||
}
|
}
|
||||||
|
|
||||||
# Make sure provided images are 64k aligned.
|
# Make sure provided images are 64k aligned.
|
||||||
kern=$(tempfile)
|
kern=$(mktemp)
|
||||||
root=$(tempfile)
|
root=$(mktemp)
|
||||||
dd if="$1" of="$kern" bs=$BLKSZ conv=sync 2>/dev/null
|
dd if="$1" of="$kern" bs=$BLKSZ conv=sync 2>/dev/null
|
||||||
dd if="$2" of="$root" bs=$BLKSZ conv=sync 2>/dev/null
|
dd if="$2" of="$root" bs=$BLKSZ conv=sync 2>/dev/null
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue