From: Jo-Philipp Wich Date: Tue, 22 Sep 2009 15:08:13 +0000 (+0000) Subject: [8.09] merge r17674 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=5c17450dc8f276f9aaf9ea89a9e410f96aa71a96;p=openwrt%2Fsvn-archive%2Farchive.git [8.09] merge r17674 SVN-Revision: 17675 --- diff --git a/scripts/combined-image.sh b/scripts/combined-image.sh index eecd3d7f20..30373e7566 100644 --- a/scripts/combined-image.sh +++ b/scripts/combined-image.sh @@ -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