summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@ringo.cs.unc.edu>2013-02-04 15:41:32 -0500
committerJonathan Herman <hermanjl@ringo.cs.unc.edu>2013-02-04 15:41:32 -0500
commitbb550d87dd56a7d0637211d6ffc86b1f68db68d3 (patch)
treeea50cf73334f28bbfc8ae4f4401fcbccdb6ed6c1
parentfc71c5f09bc8bd60e2e8e09bdb57b3143bc9d22f (diff)
Fixed command line arguments for fetching.
-rw-r--r--arm-installer-common.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm-installer-common.sh b/arm-installer-common.sh
index 18857ce..7caa673 100644
--- a/arm-installer-common.sh
+++ b/arm-installer-common.sh
@@ -55,8 +55,8 @@ getversion() {
55 55
56fetchfiles() { 56fetchfiles() {
57 echo "Fetching files from $HOST ..." >&2 57 echo "Fetching files from $HOST ..." >&2
58 rsync -P $USER@$HOST:$KERN_DIR/arch/arm/boot/zImage $TMP_DIR/$ZIMAGE_FILE 58 rsync -P $USER@$HOST:$KERN_DIR/arch/arm/boot/zImage "$TMP_DIR/$ZIMAGE_FILE"
59 rsync -P $USER@$HOST:$KERN_DIR/.config $TMP_DIR/$CONFIG_FILE 59 rsync -P $USER@$HOST:$KERN_DIR/.config "$TMP_DIR/$CONFIG_FILE"
60 echo "done." >&2 60 echo "done." >&2
61 61
62 local remotemodules 62 local remotemodules
@@ -97,7 +97,7 @@ mkscript() {
97 97
98moveconfig() { 98moveconfig() {
99 echo "Moving config file to /boot ..." >&2 99 echo "Moving config file to /boot ..." >&2
100 sudo cp $TMP_DIR/$CONFIG_FILE /boot/ 100 sudo cp "$TMP_DIR/$CONFIG_FILE" /boot/
101 echo "done." >&2 101 echo "done." >&2
102} 102}
103 103