mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
[scripts] use mktemp instead of tempfile in combined-image.sh to make it work on OS X
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17674 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -8,8 +8,8 @@ BLKSZ=65536
|
||||
}
|
||||
|
||||
# Make sure provided images are 64k aligned.
|
||||
kern=$(tempfile)
|
||||
root=$(tempfile)
|
||||
kern=$(mktemp)
|
||||
root=$(mktemp)
|
||||
dd if="$1" of="$kern" bs=$BLKSZ conv=sync 2>/dev/null
|
||||
dd if="$2" of="$root" bs=$BLKSZ conv=sync 2>/dev/null
|
||||
|
||||
|
||||
Reference in New Issue
Block a user