* [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu
@ 2005-10-31 18:17 Scott Dudley
2005-11-01 2:32 ` Mulyadi Santosa
2005-11-04 0:05 ` Scott Dudley
0 siblings, 2 replies; 3+ messages in thread
From: Scott Dudley @ 2005-10-31 18:17 UTC (permalink / raw)
To: qemu-devel
I'm trying to build/install kqemu on Redhat 9 running a 2.6.5 kernel.
Grabbed latest sources (0.7.2) for qemu and kqemu. Build doesn't appear
to generate the .ko module.
Here's my config:
scottspc.sunbelt.com: /usr/local/src/qemu-0.7.2 # sh CONFIGURE
Install prefix /usr/local
BIOS directory /usr/local/share/qemu
binary directory /usr/local/bin
Manual directory /usr/local/share/man
ELF interp prefix /usr/gnemul/qemu-%M
Source path /usr/local/src/qemu-0.7.2
C compiler gcc
Host C compiler gcc
make make
host CPU i386
host big endian no
target list i386-user
gprof enabled no
static build no
SDL support yes
SDL static link yes
mingw32 support no
Adlib support no
FMOD support no
kqemu support yes
KQEMU Linux module configuration:
kernel sources /usr/src/linux-2.6.5
kbuild type 2.6
Here's the output of the make:
scottspc.sunbelt.com: /usr/local/src/qemu-0.7.2 # make install
for d in i386-user; do \
make -C $d all || exit 1 ; \
done
make[1]: Entering directory `/usr/local/src/qemu-0.7.2/i386-user'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/i386-user'
make -C kqemu
make[1]: Entering directory `/usr/local/src/qemu-0.7.2/kqemu'
make -C /usr/src/linux-2.6.5 M=`pwd` modules
make[2]: Entering directory `/usr/src/linux-2.6.5'
make[3]: `arch/i386/kernel/asm-offsets.s' is up to date.
CHK include/asm-i386/asm_offsets.h
Building modules, stage 2.
MODPOST
make[2]: Leaving directory `/usr/src/linux-2.6.5'
make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/kqemu'
mkdir -p "/usr/local/bin"
install -m 755 -s qemu-img "/usr/local/bin"
mkdir -p "/usr/local/share/qemu"
install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
pc-bios/vgabios-cirrus.bin \
pc-bios/ppc_rom.bin pc-bios/video.x \
pc-bios/proll.elf \
pc-bios/linux_boot.bin "/usr/local/share/qemu"
mkdir -p "/usr/local/share/doc/qemu"
install -m 644 qemu-doc.html qemu-tech.html "/usr/local/share/doc/qemu"
mkdir -p "/usr/local/share/man/man1"
install qemu.1 qemu-img.1 "/usr/local/share/man/man1"
mkdir -p "/usr/local/share/qemu/keymaps"
install -m 644 keymaps/da keymaps/en-gb keymaps/et keymaps/fr
keymaps/fr-ch keymaps/is keymaps/lt keymaps/modifiers keymaps/no
keymaps/pt-br keymaps/sv keymaps/ar keymaps/de keymaps/en-us
keymaps/fi keymaps/fr-be keymaps/hr keymaps/it keymaps/lv keymaps/nl
keymaps/pl keymaps/ru keymaps/th keymaps/common keymaps/de-ch
keymaps/es keymaps/fo keymaps/fr-ca keymaps/hu keymaps/ja keymaps/mk
keymaps/nl-be keymaps/pt keymaps/sl keymaps/tr
"/usr/local/share/qemu/keymaps"
for d in i386-user; do \
make -C $d install || exit 1 ; \
done
make[1]: Entering directory `/usr/local/src/qemu-0.7.2/i386-user'
install -m 755 -s qemu-i386 "/usr/local/bin"
make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/i386-user'
cd kqemu ; ./install.sh
cp: cannot stat `kqemu.o': No such file or directory
What am I missing?
--
Regards,
Scott Dudley
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu
2005-10-31 18:17 [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu Scott Dudley
@ 2005-11-01 2:32 ` Mulyadi Santosa
2005-11-04 0:05 ` Scott Dudley
1 sibling, 0 replies; 3+ messages in thread
From: Mulyadi Santosa @ 2005-11-01 2:32 UTC (permalink / raw)
To: qemu-devel, Scott Dudley
Hello...
> I'm trying to build/install kqemu on Redhat 9 running a 2.6.5 kernel.
> Grabbed latest sources (0.7.2) for qemu and kqemu. Build doesn't
> appear to generate the .ko module.
You're missing the kqemu package itself. Grab it from Qemu website and
put it inside the Qemu directory (result of extraction) Follow the
instruction on Qemu website for further direction :)
regards
Mulyadi
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu
2005-10-31 18:17 [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu Scott Dudley
2005-11-01 2:32 ` Mulyadi Santosa
@ 2005-11-04 0:05 ` Scott Dudley
1 sibling, 0 replies; 3+ messages in thread
From: Scott Dudley @ 2005-11-04 0:05 UTC (permalink / raw)
To: qemu-devel
No responses to my quandary so tried again today. Was able to
build/install on same platform against my 2.4.20 kernel but not against
2.6.5. Does anyone know why I would get no error but yet it fails to
build the .ko module?
Thanks.
Scott Dudley wrote:
>
> I'm trying to build/install kqemu on Redhat 9 running a 2.6.5 kernel.
> Grabbed latest sources (0.7.2) for qemu and kqemu. Build doesn't
> appear to generate the .ko module.
>
> Here's my config:
>
> scottspc.sunbelt.com: /usr/local/src/qemu-0.7.2 # sh CONFIGURE
> Install prefix /usr/local
> BIOS directory /usr/local/share/qemu
> binary directory /usr/local/bin
> Manual directory /usr/local/share/man
> ELF interp prefix /usr/gnemul/qemu-%M
> Source path /usr/local/src/qemu-0.7.2
> C compiler gcc
> Host C compiler gcc
> make make
> host CPU i386
> host big endian no
> target list i386-user
> gprof enabled no
> static build no
> SDL support yes
> SDL static link yes
> mingw32 support no
> Adlib support no
> FMOD support no
> kqemu support yes
>
> KQEMU Linux module configuration:
> kernel sources /usr/src/linux-2.6.5
> kbuild type 2.6
>
>
> Here's the output of the make:
>
> scottspc.sunbelt.com: /usr/local/src/qemu-0.7.2 # make install
> for d in i386-user; do \
> make -C $d all || exit 1 ; \
> done
> make[1]: Entering directory `/usr/local/src/qemu-0.7.2/i386-user'
> make[1]: Nothing to be done for `all'.
> make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/i386-user'
> make -C kqemu
> make[1]: Entering directory `/usr/local/src/qemu-0.7.2/kqemu'
> make -C /usr/src/linux-2.6.5 M=`pwd` modules
> make[2]: Entering directory `/usr/src/linux-2.6.5'
> make[3]: `arch/i386/kernel/asm-offsets.s' is up to date.
> CHK include/asm-i386/asm_offsets.h
> Building modules, stage 2.
> MODPOST
> make[2]: Leaving directory `/usr/src/linux-2.6.5'
> make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/kqemu'
> mkdir -p "/usr/local/bin"
> install -m 755 -s qemu-img "/usr/local/bin"
> mkdir -p "/usr/local/share/qemu"
> install -m 644 pc-bios/bios.bin pc-bios/vgabios.bin \
> pc-bios/vgabios-cirrus.bin \
> pc-bios/ppc_rom.bin pc-bios/video.x \
> pc-bios/proll.elf \
> pc-bios/linux_boot.bin "/usr/local/share/qemu"
> mkdir -p "/usr/local/share/doc/qemu"
> install -m 644 qemu-doc.html qemu-tech.html
> "/usr/local/share/doc/qemu"
> mkdir -p "/usr/local/share/man/man1"
> install qemu.1 qemu-img.1 "/usr/local/share/man/man1"
> mkdir -p "/usr/local/share/qemu/keymaps"
> install -m 644 keymaps/da keymaps/en-gb keymaps/et keymaps/fr
> keymaps/fr-ch keymaps/is keymaps/lt keymaps/modifiers keymaps/no
> keymaps/pt-br keymaps/sv keymaps/ar keymaps/de keymaps/en-us
> keymaps/fi keymaps/fr-be keymaps/hr keymaps/it keymaps/lv keymaps/nl
> keymaps/pl keymaps/ru keymaps/th keymaps/common keymaps/de-ch
> keymaps/es keymaps/fo keymaps/fr-ca keymaps/hu keymaps/ja keymaps/mk
> keymaps/nl-be keymaps/pt keymaps/sl keymaps/tr
> "/usr/local/share/qemu/keymaps"
> for d in i386-user; do \
> make -C $d install || exit 1 ; \
> done
> make[1]: Entering directory `/usr/local/src/qemu-0.7.2/i386-user'
> install -m 755 -s qemu-i386 "/usr/local/bin"
> make[1]: Leaving directory `/usr/local/src/qemu-0.7.2/i386-user'
> cd kqemu ; ./install.sh
> cp: cannot stat `kqemu.o': No such file or directory
>
>
> What am I missing?
>
--
Regards,
Scott Dudley
(602) 308-1115
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2005-11-04 0:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-31 18:17 [Qemu-devel] Redhat 9, 2.6.5 Kernel, and kqemu Scott Dudley
2005-11-01 2:32 ` Mulyadi Santosa
2005-11-04 0:05 ` Scott Dudley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).