barring bugs :)
On Oct 10, 2006, at 10:03 AM, Xen patchbot-linux-ppc-2.6 wrote:
# HG changeset patch
# User Jimi Xenidis <jimix@xxxxxxxxxxxxxx>
# Node ID d2b37a151f5b27924e5aa59b4701ae8a7a623b25
# Parent f18ec562c11cabed94d448a12754660c63497fac
[LINUX][XEN][POWERPC] Enable PowerPC use of netback
This patch "completes" the VIO work for Net and Block.
It works for most xm-tests and all my manual checks.
Some xm-tests fail because they lose console because they reset
"extra" and the domain no longer gets:
extra = "xencons=tty128 console=tty128"
anyway, here is my net.dom script:
# -*- mode: python; -*-
import time
kernel = "vmlinux.strip"
ramdisk = "/root/ramdisk.image.gz"
memory = 64
name = "S-%s" % time.strftime("%x-%X")
vif = [ '' ]
# Number of Virtual CPUS to use, default is 1
#vcpus = 1
# cmdline
extra = "ip=dhcp xencons=tty128 console=tty128"
and my disk.dom script (/root/disk1 is the initrd from xm-test):
# -*- mode: python; -*-
import time
kernel = "vmlinux.strip"
#ramdisk = "/root/ramdisk.image.gz"
memory = 64
name = "S-%s" % time.strftime("%x-%X")
# Number of Virtual CPUS to use, default is 1
#vcpus = 1
#vif = [ '' ]
#disk = [ 'phy:hda3,hda3,r' ]
disk = [ 'file:/root/disk1,hda1,w']
# cmdline
extra = "root=/dev/hda1 rw init=/bin/sh sysrq=1 debug
xencons=tty128 console=tty128"
_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel
|