* strange pvops problem
@ 2010-06-01 2:49 Onkar Mahajan
2010-06-01 17:16 ` Konrad Rzeszutek Wilk
0 siblings, 1 reply; 2+ messages in thread
From: Onkar Mahajan @ 2010-06-01 2:49 UTC (permalink / raw)
To: xen-devel, xen-users, xen-bugs, xen-tools
[-- Attachment #1.1: Type: text/plain, Size: 4536 bytes --]
I compiled the pvops kernel like this :
[root@localhost xen-4.0.0]# ls
buildconfigs config Config.mk.orig dist extras
install.sh Makefile README tools xen
build-linux-2.6-pvops_x86_32 Config.mk COPYING docs file
linux-2.6-pvops.git messages stubdom unmodified_drivers
[root@localhost build-linux-2.6-pvops_x86_32]# make -j2 bzImage modules
make -C /home/onkar/xen/xen-4.0.0/linux-2.6-pvops.git
O=/home/onkar/xen/xen-4.0.0/build-linux-2.6-pvops_x86_32/. bzImage modules
scripts/kconfig/conf -s arch/x86/Kconfig
CHK include/linux/version.h
CHK include/linux/utsrelease.h
SYMLINK include/asm -> include/asm-x86
Using /home/onkar/xen/xen-4.0.0/linux-2.6-pvops.git as source for kernel
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/sumversion.o
HOSTLD scripts/mod/modpost
CALL
/home/onkar/xen/xen-4.0.0/linux-2.6-pvops.git/scripts/checksyscalls.sh
CHK include/linux/compile.h
LDS arch/x86/kernel/acpi/realmode/wakeup.lds
LD arch/x86/kernel/acpi/realmode/wakeup.elf
OBJCOPY arch/x86/kernel/acpi/realmode/wakeup.bin
AS arch/x86/kernel/acpi/wakeup_rm.o
LD arch/x86/kernel/acpi/built-in.o
LDS arch/x86/kernel/vmlinux.lds
LD arch/x86/kernel/built-in.o
LDS arch/x86/vdso/vdso32/vdso32.lds
VDSO arch/x86/vdso/vdso32-sysenter.so.dbg
VDSOSYM arch/x86/vdso/vdso32-sysenter-syms.lds
VDSO arch/x86/vdso/vdso32-int80.so.dbg
OBJCOPY arch/x86/vdso/vdso32-sysenter.so
VDSOSYM arch/x86/vdso/vdso32-int80-syms.lds
OBJCOPY arch/x86/vdso/vdso32-int80.so
VDSOSYM arch/x86/vdso/vdso32-syms.lds
AS arch/x86/vdso/vdso32.o
LD arch/x86/vdso/built-in.o
LD arch/x86/built-in.o
CC [M] drivers/usb/serial/keyspan_pda.o
LD vmlinux.o
MODPOST vmlinux.o
WARNING: modpost: Found 4 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
GEN .version
CHK include/linux/compile.h
UPD include/linux/compile.h
CC init/version.o
LD init/built-in.o
LD .tmp_vmlinux1
KSYM .tmp_kallsyms1.S
AS .tmp_kallsyms1.o
LD .tmp_vmlinux2
KSYM .tmp_kallsyms2.S
AS .tmp_kallsyms2.o
LD .tmp_vmlinux3
KSYM .tmp_kallsyms3.S
AS .tmp_kallsyms3.o
CHK include/linux/version.h
make[4]: `scripts/unifdef' is up to date.
LD vmlinux
SYSMAP System.map
SYSMAP .tmp_System.map
Building modules, stage 2.
VOFFSET arch/x86/boot/voffset.h
LDS arch/x86/boot/compressed/vmlinux.lds
OBJCOPY arch/x86/boot/compressed/vmlinux.bin
RELOCS arch/x86/boot/compressed/vmlinux.relocs
GZIP arch/x86/boot/compressed/vmlinux.bin.gz
MKPIGGY arch/x86/boot/compressed/piggy.S
AS arch/x86/boot/compressed/piggy.o
LD arch/x86/boot/compressed/vmlinux
CC arch/x86/boot/version.o
OBJCOPY arch/x86/boot/vmlinux.bin
ZOFFSET arch/x86/boot/zoffset.h
AS arch/x86/boot/header.o
LD arch/x86/boot/setup.elf
OBJCOPY arch/x86/boot/setup.bin
BUILD arch/x86/boot/bzImage
Root device is (8, 1)
Setup is 13532 bytes (padded to 13824 bytes).
System is 2856 kB
CRC 9632318a
Kernel: arch/x86/boot/bzImage is ready (#5)
MODPOST 1509 modules
* LD [M] drivers/usb/serial/keyspan_pda.ko
IHEX2FW firmware/emi26/loader.fw
IHEX2FW firmware/emi26/firmware.fw
IHEX2FW firmware/emi26/bitstream.fw
H16TOFW firmware/edgeport/boot.fw
H16TOFW firmware/edgeport/boot2.fw
H16TOFW firmware/edgeport/down.fw
H16TOFW firmware/edgeport/down2.fw
IHEX2FW firmware/whiteheat_loader.fw
IHEX2FW firmware/whiteheat.fw
IHEX2FW firmware/keyspan_pda/keyspan_pda.fw
IHEX2FW firmware/keyspan_pda/xircom_pgs.fw*
In here we can see that these modules are getting compiled.
but when I do
[root@localhost xen-4.0.0]# make -j2 dist
install: cannot stat `firmware/emi26/loader.fw': No such file or directory
install: cannot stat `firmware/emi26/firmware.fw': No such file or directory
*make[6]: ***
[/home/onkar/xen/xen-4.0.0/dist/install/lib/firmware/emi26/loader.fw] Error
*1
make[6]: *** Waiting for unfinished jobs....
make[6]: ***
[/home/onkar/xen/xen-4.0.0/dist/install/lib/firmware/emi26/firmware.fw]
Error 1
make[5]: *** [_modinst_post] Error 2
make[4]: *** [sub-make] Error 2
make[3]: *** [all] Error 2
make[2]: *** [build] Error 2
make[1]: *** [linux-2.6-pvops-install] Error 2
make: *** [install-kernels] Error 1
Please help me with this.
Regards,
Onkar
[-- Attachment #1.2: Type: text/html, Size: 4979 bytes --]
[-- Attachment #2: Type: text/plain, Size: 137 bytes --]
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: strange pvops problem
2010-06-01 2:49 strange pvops problem Onkar Mahajan
@ 2010-06-01 17:16 ` Konrad Rzeszutek Wilk
0 siblings, 0 replies; 2+ messages in thread
From: Konrad Rzeszutek Wilk @ 2010-06-01 17:16 UTC (permalink / raw)
To: Onkar Mahajan; +Cc: xen-tools, xen-devel, xen-users, xen-bugs
> In here we can see that these modules are getting compiled.
>
> but when I do
> [root@localhost xen-4.0.0]# make -j2 dist
Try without the -j2
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-01 17:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-01 2:49 strange pvops problem Onkar Mahajan
2010-06-01 17:16 ` Konrad Rzeszutek Wilk
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.