From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Thomas Subject: [PATCH][ioemu] - remove -c option in echo Date: Tue, 06 Mar 2007 13:47:09 -0500 Message-ID: <45EDB72D.3090904@virtualiron.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050006080508020209080102" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org This is a multi-part message in MIME format. --------------050006080508020209080102 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Today must be cleanup day... here's another small patch. I've yet to find out what echo -c does, and it certainly does nothing in all the environments that I've used, so here's a small fix to remove the need for it -- ------------------------------------------------------------------------ Ben Thomas Virtual Iron Software bthomas@virtualiron.com Tower 1, Floor 2 978-849-1214 900 Chelmsford Street Lowell, MA 01851 --------------050006080508020209080102 Content-Type: text/x-patch; name="ioemu-qemu_ifup.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ioemu-qemu_ifup.patch" Remove use of -c in script. I've no idea what it does, and it doesn't appear to be valid on some systems. Use a more generic approach. Signed-off-by: Ben Thomas (ben@virtualiron.com) diff -r 602a5469786e tools/ioemu/target-i386-dm/qemu-ifup --- a/tools/ioemu/target-i386-dm/qemu-ifup Fri Mar 02 16:59:44 2007 -0500 +++ b/tools/ioemu/target-i386-dm/qemu-ifup Mon Mar 05 13:34:54 2007 -0500 @@ -3,8 +3,7 @@ #. /etc/rc.d/init.d/functions #ulimit -c unlimited -echo -c 'config qemu network with xen bridge for ' -echo $* +echo 'config qemu network with xen bridge for ' $* ifconfig $1 0.0.0.0 up brctl addif $2 $1 --------------050006080508020209080102 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --------------050006080508020209080102--