From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1CzkGN-0005vY-U1 for qemu-devel@nongnu.org; Fri, 11 Feb 2005 18:31:52 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1CzkGM-0005vE-CY for qemu-devel@nongnu.org; Fri, 11 Feb 2005 18:31:51 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1CzkGM-0005v2-8M for qemu-devel@nongnu.org; Fri, 11 Feb 2005 18:31:50 -0500 Received: from [65.19.178.186] (helo=pythonhacker.is-a-geek.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Czk2z-0008IJ-Jo for qemu-devel@nongnu.org; Fri, 11 Feb 2005 18:18:01 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by pythonhacker.is-a-geek.net (Postfix) with ESMTP id EE41E403D4 for ; Fri, 11 Feb 2005 18:18:00 -0500 (EST) Received: from pythonhacker.is-a-geek.net ([127.0.0.1]) by localhost (pythonhacker.is-a-geek.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04694-01 for ; Fri, 11 Feb 2005 18:17:45 -0500 (EST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pythonhacker.is-a-geek.net (Postfix) with ESMTP id EB574403CF for ; Fri, 11 Feb 2005 18:17:42 -0500 (EST) From: Darryl Dixon Content-Type: multipart/mixed; boundary="=-2ol4gEErQRyKPa+h2Ysz" Date: Sat, 12 Feb 2005 12:17:41 +1300 Message-Id: <1108163861.7659.9.camel@localhost.localdomain> Mime-Version: 1.0 Subject: [Qemu-devel] [PATCH] --resend-- Major 254 to Major 250 Reply-To: esrever_otua@pythonhacker.is-a-geek.net, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --=-2ol4gEErQRyKPa+h2Ysz Content-Type: multipart/alternative; boundary="=-iM7KyUzNelTcrMFRtTCO" --=-iM7KyUzNelTcrMFRtTCO Content-Type: text/plain Content-Transfer-Encoding: 7bit Email formatting mashed the previous patch I sent in, so please find attached a new copy which works around the 'could not major 254' error by moving the kqemu device to major 250. Cheers, -- Darryl Dixon --=-iM7KyUzNelTcrMFRtTCO Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 7bit Email formatting mashed the previous patch I sent in, so please find attached a new copy which works around the 'could not major 254' error by moving the kqemu device to major 250.

Cheers,
--
Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
--=-iM7KyUzNelTcrMFRtTCO-- --=-2ol4gEErQRyKPa+h2Ysz Content-Disposition: attachment; filename=major_250.patch Content-Type: text/x-patch; name=major_250.patch; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit diff -ru qemu/kqemu/install.sh qemu_major250/kqemu/install.sh --- qemu/kqemu/install.sh 2005-02-11 11:10:28.000000000 +1300 +++ qemu_major250/kqemu/install.sh 2005-02-12 11:23:14.000000000 +1300 @@ -20,5 +20,5 @@ # Create the kqemu device. No special priviledge is needed to use kqemu. device="/dev/kqemu" rm -f $device -mknod $device c 254 0 +mknod $device c 250 0 chmod 666 $device diff -ru qemu/kqemu/kqemu.h qemu_major250/kqemu/kqemu.h --- qemu/kqemu/kqemu.h 2005-02-11 11:10:28.000000000 +1300 +++ qemu_major250/kqemu/kqemu.h 2005-02-12 11:23:30.000000000 +1300 @@ -1,7 +1,7 @@ #ifndef KQEMU_H #define KQEMU_H -#define KQEMU_MAJOR 254 +#define KQEMU_MAJOR 250 #define KQEMU_VERSION 0x010000 --=-2ol4gEErQRyKPa+h2Ysz--