From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Marc - A. Dahlhaus" Subject: Re: Xen-4.0.0-rc1 root Device ca01 and console hvc0 Date: Sun, 31 Jan 2010 20:13:59 +0100 Message-ID: <4B65D677.20005@wol.de> References: <4B6460FD.1070504@access.denied> <4B6567F7.3090801@access.denied> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <4B6567F7.3090801@access.denied> 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, stefan.kuhne@gmx.net List-Id: xen-devel@lists.xenproject.org Hello Stefan, Am 31.01.2010 12:22, schrieb Stefan Kuhne: > Am 30.01.2010 17:40, schrieb Stefan Kuhne: > Hello, > >> Can i set console to tty1 instead of hvc0? >> > How can i get informations about /dev/hvc0? > I must modify my initrd for it. > > Because of these two lines: > exec>/dev/tty1 > exec 2>/dev/tty1 You can try to replace your lines with the following one (from dracut) to get attached to whatever default console was defined on kernel commandline: exec 0<>/dev/console 1<>/dev/console 2<>/dev/console Marc