All of lore.kernel.org
 help / color / mirror / Atom feed
* dom0 won't boot
@ 2004-07-29 21:09 Barry Rountree
  2004-07-29 21:26 ` Ian Pratt
  0 siblings, 1 reply; 16+ messages in thread
From: Barry Rountree @ 2004-07-29 21:09 UTC (permalink / raw)
  To: xen-devel

I had what was checked in a few days ago working quite well, so I decided to 
wipe the machine and try out two partitions (swap + /) and domains 1+ on 
loopback.

Now, after xen finished booting, the machine reboots.

The only think that's really different is my swap partition is on /dev/sda1 
and my root partition is on /dev/sda5.  But the grub menu looks ok as far as 
I can tell...

I'm running on a dual P3.

bk | head, /etc/fstab, /boot/grub/menu.lst, and ls /boot provided below.

Anything look obvious?

Thanks,

Barry

----------------------------------------
bk | head
[rountree@dom0 xeno-unstable.bk]$ bk changes | head
ChangeSet@1.1143, 2004-07-28 16:35:54+01:00, smh22@tempest.cl.cam.ac.uk
  don't use common slab/page allocators for ia64 (it uses 2.6 stuff in arch 
directory)


----------------------------------------
cat /etc/fstab
/dev/sda5 / xfs defaults 1 1
none /dev/pts devpts mode=0620 0 0
#/dev/hdc /mnt/cdrom auto 
umask=0,user,iocharset=iso8859-1,codepage=850,noauto,ro,exec 0 0
#none /mnt/floppy supermount 
dev=/dev/fd0,fs=ext2:vfat,--,umask=0,iocharset=iso8859-1,sync,codepage=850 0 
0
none /proc proc defaults 0 0
/dev/sda1 swap swap defaults 0 0


----------------------------------------
cat /boot/grub/menu.lst
timeout 10
color black/cyan yellow/cyan
default 0

title Xen
kernel (hd0,4)/boot/xen.gz dom0_mem=131072 com1=115200 noht
module (hd0,4)/boot/vmlinuz-2.4.26-xen0 root=/dev/sda5 ro

title linux-smp
kernel (hd0,4)/boot/vmlinuz-smp root=/dev/sda5 devfs=mount acpi=ht 
resume=/dev/sda1 max_loop=128
initrd (hd0,4)/boot/initrd-smp.img


----------------------------------------
ls -l /boot
boot.0800
config
config-2.4.26-xen0
config-2.4.26-xenU
config-2.6.3-7mdk
config-2.6.3-7mdksmp
diag1.img
diag2.img
grub
initrd-2.6.3-7mdk.img
initrd-2.6.3-7mdksmp.img
initrd.img
initrd-smp.img
kernel.h
kernel.h-2.6.3-7mdk
kernel.h-2.6.3-7mdksmp
map
message
message-graphic
message-text
System.map
System.map-2.4.26-xen0
System.map-2.4.26-xenU
System.map-2.6.3-7mdk
System.map-2.6.3-7mdksmp
us.klt
vmlinux-syms-2.4.26-xen0
vmlinux-syms-2.4.26-xenU
vmlinuz
vmlinuz-2.4.26-xen0
vmlinuz-2.4.26-xenU
vmlinuz-2.6.3-7mdk
vmlinuz-2.6.3-7mdksmp
vmlinuz-smp
xen.gz
xen-syms


-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com

^ permalink raw reply	[flat|nested] 16+ messages in thread
* RE: dom0 won't boot
@ 2004-07-30  7:31 Neugebauer, Rolf
  0 siblings, 0 replies; 16+ messages in thread
From: Neugebauer, Rolf @ 2004-07-30  7:31 UTC (permalink / raw)
  To: Barry Rountree, xen-devel; +Cc: Neugebauer, Rolf


> > All of that output is from grub, you're not seeing anything from
> > Xen.
> >
> > Try "com1=115200,8n1" and make sure that you've got the baudrate
> > at the other end set correctly (I thought grub defaulted to 9600?)
> 
> It's set correctly -- I had never done this before, so there was a bit
of
> a
> learning curve.  I practiced on the smp kernel that I usually boot
into
> and
> when I was able to capture everything in minicom there I switched over
to
> xen.  If I had gotten no output at all, it would have been suspicious.
> However, I did get output, no characters were garbled, no sentences
cut in
> half, etc.
> 
> For whatever it's worth, here's the entry in grub:
> 
> title Xen-Serial
> serial --unit=0 --speed=9600 --word=8 --parity=no --stop=1
> terminal serial
> kernel (hd0,4)/boot/xen.gz dom0_mem=131072 com1=115200 noht noreboot
> module (hd0,4)/boot/vmlinuz-2.4.26-xen0 root=/dev/sda5 ro
console=ttyS0

Your grub and xen serial speed settings are different. Try setting them
to the same value which also has to match your terminal program setting.
Presumably you want 'com1=9600,8n1' on the kernel line

rolf

> But still, a good point.
> 
> Barry
> >
> > Ian
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by OSTG. Have you noticed the changes
on
> Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
> one more big change to announce. We are now OSTG- Open Source
Technology
> Group. Come see the changes on the new OSTG site. www.ostg.com
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/xen-devel



-------------------------------------------------------
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2004-07-30 15:27 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-29 21:09 dom0 won't boot Barry Rountree
2004-07-29 21:26 ` Ian Pratt
2004-07-29 21:50   ` Barry Rountree
2004-07-29 22:05     ` Steven Hand
2004-07-29 22:20       ` Barry Rountree
2004-07-29 22:09     ` Ian Pratt
2004-07-29 22:30       ` Barry Rountree
2004-07-30  0:16         ` Barry Rountree
2004-07-30  0:25           ` James Harper
2004-07-30  0:49             ` Barry Rountree
2004-07-30  0:29           ` Ian Pratt
2004-07-30  0:49             ` Barry Rountree
2004-07-30  7:27               ` Ian Pratt
2004-07-30 15:27                 ` dom0 won't boot -- Fixed Barry Rountree
2004-07-30 13:31               ` dom0 won't boot Mark Williamson
  -- strict thread matches above, loose matches on Subject: below --
2004-07-30  7:31 Neugebauer, Rolf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.