* Questions about the name of qemu bin file for different archs
@ 2010-12-14 7:40 Ke, Liping
2010-12-14 7:50 ` Ke, Liping
2010-12-14 14:46 ` Bruce Ashfield
0 siblings, 2 replies; 4+ messages in thread
From: Ke, Liping @ 2010-12-14 7:40 UTC (permalink / raw)
To: Zhang, Jessica; +Cc: yocto@yoctoproject.org
Hi, Jessica
I found qemu bin file name convention is different for different archs, for example, for x86, it is bzImage-qemuXXX.
For arm, it is zImage-qemuXXX. My question is why it is bzXXX or zXXX, is there any reason of such naming convention?
Or I must did name translate for each kind of arch qemu bin file?
Thanks& Regards,
criping
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Questions about the name of qemu bin file for different archs
2010-12-14 7:40 Questions about the name of qemu bin file for different archs Ke, Liping
@ 2010-12-14 7:50 ` Ke, Liping
2010-12-14 14:46 ` Bruce Ashfield
1 sibling, 0 replies; 4+ messages in thread
From: Ke, Liping @ 2010-12-14 7:50 UTC (permalink / raw)
To: Ke, Liping, Zhang, Jessica; +Cc: yocto@yoctoproject.org
What's more, I found sometimes, for example, there's no symbolic links, so the name is very long and strange.
Such as one ppc image: zImage-2.6.34+git0+d1cd5c80ee97e81e130be8c3de3965b770f320d6_0+9ac0daee43dd19d8bea828cf79450c9748ae0daa-r13-qemuppc-20101210020445.bin
Since I need to download the specific file, so a definite naming is needed such as for x86, it is bzImage-qemux86.bin, for arm, it is bzImage-qemuarm.bin,
For powerpc, it is bzImage-qemupowerpc.bin, etc.
Am I right?
criping
> -----Original Message-----
> From: yocto-bounces@yoctoproject.org [mailto:yocto-
> bounces@yoctoproject.org] On Behalf Of Ke, Liping
> Sent: Tuesday, December 14, 2010 3:41 PM
> To: Zhang, Jessica
> Cc: yocto@yoctoproject.org
> Subject: [yocto] Questions about the name of qemu bin file for
> different archs
>
> Hi, Jessica
>
> I found qemu bin file name convention is different for different archs,
> for example, for x86, it is bzImage-qemuXXX.
> For arm, it is zImage-qemuXXX. My question is why it is bzXXX or zXXX,
> is there any reason of such naming convention?
>
> Or I must did name translate for each kind of arch qemu bin file?
>
>
> Thanks& Regards,
> criping
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Questions about the name of qemu bin file for different archs
2010-12-14 7:40 Questions about the name of qemu bin file for different archs Ke, Liping
2010-12-14 7:50 ` Ke, Liping
@ 2010-12-14 14:46 ` Bruce Ashfield
2010-12-22 6:38 ` Ke, Liping
1 sibling, 1 reply; 4+ messages in thread
From: Bruce Ashfield @ 2010-12-14 14:46 UTC (permalink / raw)
To: Ke, Liping; +Cc: yocto@yoctoproject.org
On 10-12-14 02:40 AM, Ke, Liping wrote:
> Hi, Jessica
>
> I found qemu bin file name convention is different for different archs, for example, for x86, it is bzImage-qemuXXX.
> For arm, it is zImage-qemuXXX. My question is why it is bzXXX or zXXX, is there any reason of such naming convention?
The leading part of the image name is dependent
on the type of kernel we are booting.
]> grep KERNEL_IMAGETYPE qemu*
qemuarm.conf:KERNEL_IMAGETYPE = "zImage"
qemumips.conf:KERNEL_IMAGETYPE = "vmlinux"
qemumips-variant.conf:KERNEL_IMAGETYPE = "vmlinux"
qemuppc.conf:KERNEL_IMAGETYPE = "zImage"
qemux86-64.conf:KERNEL_IMAGETYPE = "bzImage"
qemux86.conf:KERNEL_IMAGETYPE = "bzImage"
And those are your differences in the name.
As for why the symlinks may not be created at times, I'm
not sure.
>
> Or I must did name translate for each kind of arch qemu bin file?
Should be something you can script by checking the
KERNEL_IMAGETYPE.
Cheers,
Bruce
>
>
> Thanks& Regards,
> criping
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Questions about the name of qemu bin file for different archs
2010-12-14 14:46 ` Bruce Ashfield
@ 2010-12-22 6:38 ` Ke, Liping
0 siblings, 0 replies; 4+ messages in thread
From: Ke, Liping @ 2010-12-22 6:38 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: yocto@yoctoproject.org
Hi, Bruce
Lost this mail and finally found it.
Thanks for your detailed explanation.
And so, for easily fetching those qemu images, we need to make sure that
these symbol-link must be created according to the defined naming convention in the build-result-repository.
I will check this problem firstly.
Thanks & Regards,
criping
>
> On 10-12-14 02:40 AM, Ke, Liping wrote:
> > Hi, Jessica
> >
> > I found qemu bin file name convention is different for different
> archs, for example, for x86, it is bzImage-qemuXXX.
> > For arm, it is zImage-qemuXXX. My question is why it is bzXXX or zXXX,
> is there any reason of such naming convention?
>
> The leading part of the image name is dependent
> on the type of kernel we are booting.
>
> ]> grep KERNEL_IMAGETYPE qemu*
> qemuarm.conf:KERNEL_IMAGETYPE = "zImage"
> qemumips.conf:KERNEL_IMAGETYPE = "vmlinux"
> qemumips-variant.conf:KERNEL_IMAGETYPE = "vmlinux"
> qemuppc.conf:KERNEL_IMAGETYPE = "zImage"
> qemux86-64.conf:KERNEL_IMAGETYPE = "bzImage"
> qemux86.conf:KERNEL_IMAGETYPE = "bzImage"
>
> And those are your differences in the name.
>
> As for why the symlinks may not be created at times, I'm
> not sure.
>
> >
> > Or I must did name translate for each kind of arch qemu bin file?
>
> Should be something you can script by checking the
> KERNEL_IMAGETYPE.
>
> Cheers,
>
> Bruce
>
> >
> >
> > Thanks& Regards,
> > criping
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-12-22 6:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-14 7:40 Questions about the name of qemu bin file for different archs Ke, Liping
2010-12-14 7:50 ` Ke, Liping
2010-12-14 14:46 ` Bruce Ashfield
2010-12-22 6:38 ` Ke, Liping
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.