Module Name:    src
Committed By:   jmcneill
Date:           Sun Feb 10 21:51:53 UTC 2013

Modified Files:
        src/distrib/utils/embedded/conf: rpi.conf

Log Message:
dont use echo -n


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/distrib/utils/embedded/conf/rpi.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/distrib/utils/embedded/conf/rpi.conf
diff -u src/distrib/utils/embedded/conf/rpi.conf:1.16 src/distrib/utils/embedded/conf/rpi.conf:1.17
--- src/distrib/utils/embedded/conf/rpi.conf:1.16	Sat Feb  9 20:47:46 2013
+++ src/distrib/utils/embedded/conf/rpi.conf	Sun Feb 10 21:51:53 2013
@@ -1,4 +1,4 @@
-# $NetBSD: rpi.conf,v 1.16 2013/02/09 20:47:46 christos Exp $
+# $NetBSD: rpi.conf,v 1.17 2013/02/10 21:51:53 jmcneill Exp $
 # Raspberry Pi customization script used by mkimage
 #
 
@@ -51,13 +51,12 @@ EOF
 		;;
 	esac
 
-	echo -n "${bar} installing firmware files:"
+	echo "${bar} installing firmware files ${bar}"
 	(cd ${mnt}/boot &&
 		for f in ${firmwarefiles}; do
-			echo -n " $f"
+			echo " $f"
 			cp ${firmwaredir}/${f} .
 		done
 	)
-	echo " ${bar}"
 
 }

Reply via email to