Module Name:    src
Committed By:   jmcneill
Date:           Sun Feb 17 20:49:16 UTC 2013

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

Log Message:
gzcat -> zcat


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/distrib/utils/embedded/conf/beagleboard.conf
cvs rdiff -u -r1.17 -r1.18 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/beagleboard.conf
diff -u src/distrib/utils/embedded/conf/beagleboard.conf:1.9 src/distrib/utils/embedded/conf/beagleboard.conf:1.10
--- src/distrib/utils/embedded/conf/beagleboard.conf:1.9	Sun Feb 10 16:13:00 2013
+++ src/distrib/utils/embedded/conf/beagleboard.conf	Sun Feb 17 20:49:16 2013
@@ -1,4 +1,4 @@
-# $NetBSD: beagleboard.conf,v 1.9 2013/02/10 16:13:00 christos Exp $
+# $NetBSD: beagleboard.conf,v 1.10 2013/02/17 20:49:16 jmcneill Exp $
 # BeagleBoard customization script used by mkimage
 #
 board=beagleboard
@@ -40,7 +40,7 @@ EOF
 	echo "${bar} installing BEAGLEBOARD kernel to /boot ${bar}"
 	case "${kernel}" in
 	*.gz)
-		gzcat "${kernel}" > "${mnt}/boot/${kernelimg}"
+		zcat "${kernel}" > "${mnt}/boot/${kernelimg}"
 		;;
 	*)
 		cp "${kernel}" "${mnt}/boot/${kernelimg}"

Index: src/distrib/utils/embedded/conf/rpi.conf
diff -u src/distrib/utils/embedded/conf/rpi.conf:1.17 src/distrib/utils/embedded/conf/rpi.conf:1.18
--- src/distrib/utils/embedded/conf/rpi.conf:1.17	Sun Feb 10 21:51:53 2013
+++ src/distrib/utils/embedded/conf/rpi.conf	Sun Feb 17 20:49:16 2013
@@ -1,4 +1,4 @@
-# $NetBSD: rpi.conf,v 1.17 2013/02/10 21:51:53 jmcneill Exp $
+# $NetBSD: rpi.conf,v 1.18 2013/02/17 20:49:16 jmcneill Exp $
 # Raspberry Pi customization script used by mkimage
 #
 
@@ -44,7 +44,7 @@ EOF
 	echo "${bar} installing kernel ${bar}"
 	case ${kernel} in
 	*.gz)
-		gzcat ${kernel} > ${mnt}/boot/kernel.img
+		zcat ${kernel} > ${mnt}/boot/kernel.img
 		;;
 	*)
 		cp ${kernel} ${mnt}/boot/kernel.img

Reply via email to