Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/distrib/utils/embedded/conf dont use echo -n
details: https://anonhg.NetBSD.org/src/rev/d58186dfd458
branches: trunk
changeset: 784829:d58186dfd458
user: jmcneill <jmcneill%NetBSD.org@localhost>
date: Sun Feb 10 21:51:53 2013 +0000
description:
dont use echo -n
diffstat:
distrib/utils/embedded/conf/rpi.conf | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diffs (25 lines):
diff -r a53901d46255 -r d58186dfd458 distrib/utils/embedded/conf/rpi.conf
--- a/distrib/utils/embedded/conf/rpi.conf Sun Feb 10 21:51:05 2013 +0000
+++ b/distrib/utils/embedded/conf/rpi.conf Sun Feb 10 21:51:53 2013 +0000
@@ -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 @@
;;
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}"
}
Home |
Main Index |
Thread Index |
Old Index