|
|
|
|
|
|
|
|
|
|
xen-users
RE: [Xen-users] xen-patches-2.6.31-11.tar.bz2
Hello,
I was attempting to apply the xen patches to 2.6.31.12 kernel source with this script:
#!/bin/bash for P in `ls ../xen-patches-2.6.31-11/6*.patch1 | sort ` do patch -p1 -s -i $P if [ $? = 0 ]; then echo $P applied else echo "Error processing "$P exit 1 fi done
During execution (while in the top level directory of the kernel source) I was presented with:
root@localhost:/usr/local/src/linux-2.6.31.12-xen# sh xen-patching.sh The text leading up to this was: -------------------------- |Subject: add console_use_vt |From: kraxel@xxxxxxx |Patch-mainline: no | |$subject says all | |--- | drivers/char/tty_io.c | 7 ++++++- | include/linux/console.h | 1 + | 2 files changed, 7 insertions(+), 1 deletion(-) | |--- head-2009-10-06.orig/drivers/char/tty_io.c 2009-10-06 14:51:58.000000000 +0200 |+++ head-2009-10-06/drivers/char/tty_io.c 2009-10-06 14:55:34.000000000 +0200 -------------------------- File to patch:
I was wondering what information I should provide on the console after the "File to patch:" line?
I fiqured out the problem with my steps. I copied the kernel source over to the linux-2.6.31.12-xen folder but the kernel source was in a linux-2.6.31.12 folder. I now get:
../xen-patches-2.6.31-11/60047_xen3-patch-2.6.31.3-4.patch1 applied ../xen-patches-2.6.31-11/60048_xen3-patch-2.6.31.5-6.patch1 applied ../xen-patches-2.6.31-11/60049_xen3-patch-2.6.31.8-9.patch1 applied ../xen-patches-2.6.31-11/60050_xen3-patch-2.6.31.9-10.patch1 applied ../xen-patches-2.6.31-11/60051_xen-balloon-max-target.patch1 applied ../xen-patches-2.6.31-11/60052_xen-blkback-cdrom.patch1 applied ../xen-patches-2.6.31-11/60053_xen-blktap-write-barriers.patch1 applied ../xen-patches-2.6.31-11/60054_xen-op-packet.patch1 applied ../xen-patches-2.6.31-11/60055_xen-blkfront-cdrom.patch1 applied ../xen-patches-2.6.31-11/60056_xen-sections.patch1 applied ../xen-patches-2.6.31-11/60057_xen-kconfig-compat.patch1 applied ../xen-patches-2.6.31-11/60058_xen-cpufreq-report.patch1 applied ../xen-patches-2.6.31-11/60059_xen-staging-build.patch1 applied ../xen-patches-2.6.31-11/60060_xen-sysdev-suspend.patch1 applied ../xen-patches-2.6.31-11/60061_xen-ipi-per-cpu-irq.patch1 applied ../xen-patches-2.6.31-11/60062_xen-virq-per-cpu-irq.patch1 applied ../xen-patches-2.6.31-11/60063_xen-configurable-guest-devices.patch1 applied ../xen-patches-2.6.31-11/60064_xen-netback-nr-irqs.patch1 applied ../xen-patches-2.6.31-11/60065_xen-netback-notify-multi.patch1 applied ../xen-patches-2.6.31-11/60066_xen-vmalloc_32.patch1 applied ../xen-patches-2.6.31-11/60067_xen-x86-panic-no-reboot.patch1 applied ../xen-patches-2.6.31-11/60068_xen-x86-dcr-fallback.patch1 applied ../xen-patches-2.6.31-11/60069_xen-x86-consistent-nmi.patch1 applied ../xen-patches-2.6.31-11/60070_xen-x86-no-lapic.patch1 applied ../xen-patches-2.6.31-11/60071_xen-x86-pmd-handling.patch1 applied ../xen-patches-2.6.31-11/60072_xen-x86-bigmem.patch1 applied ../xen-patches-2.6.31-11/60073_xen-x86-machphys-prediction.patch1 applied ../xen-patches-2.6.31-11/60074_xen-x86-exit-mmap.patch1 applied ../xen-patches-2.6.31-11/60075_xen-x86-per-cpu-vcpu-info.patch1 applied ../xen-patches-2.6.31-11/60076_xen-x86_64-pgd-pin.patch1 applied ../xen-patches-2.6.31-11/60077_xen-x86_64-pgd-alloc-order.patch1 applied ../xen-patches-2.6.31-11/60078_xen-x86_64-dump-user-pgt.patch1 applied ../xen-patches-2.6.31-11/60079_xen-x86_64-note-init-p2m.patch1 applied
-M
|
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|