* mini-os (not a cross post)
@ 2005-09-26 23:02 Donour Sizemore
2005-09-28 18:24 ` Dave Olien
0 siblings, 1 reply; 10+ messages in thread
From: Donour Sizemore @ 2005-09-26 23:02 UTC (permalink / raw)
To: xen-devel
Hi everyone
I just posted to xen-users about not being able to build
the mini-os example. Looking through the souce I found a
big
* TODO - x86_64 broken!
in extras/mini-os/include/hypervisor.h. Does anybody know
exactly what the issue is that keeps it from building?
thanks
donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-26 23:02 mini-os (not a cross post) Donour Sizemore
@ 2005-09-28 18:24 ` Dave Olien
2005-09-28 20:23 ` Donour Sizemore
0 siblings, 1 reply; 10+ messages in thread
From: Dave Olien @ 2005-09-28 18:24 UTC (permalink / raw)
To: Donour Sizemore; +Cc: xen-devel
I did a quick fix of replacing the hypervisor.h contents with
code from the sparse kernel's corresponding file. This along
with a couple of other minor changes got it to compile. But
it doesn't boot up properly. I'm investigating that a bit in
my spare time.
On Mon, Sep 26, 2005 at 05:02:26PM -0600, Donour Sizemore wrote:
> Hi everyone
>
> I just posted to xen-users about not being able to build
> the mini-os example. Looking through the souce I found a
> big
>
> * TODO - x86_64 broken!
>
> in extras/mini-os/include/hypervisor.h. Does anybody know
> exactly what the issue is that keeps it from building?
>
> thanks
>
> donour
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-28 18:24 ` Dave Olien
@ 2005-09-28 20:23 ` Donour Sizemore
2005-09-28 20:40 ` Dave Olien
0 siblings, 1 reply; 10+ messages in thread
From: Donour Sizemore @ 2005-09-28 20:23 UTC (permalink / raw)
To: Dave Olien; +Cc: xen-devel
Dave Olien wrote:
>I did a quick fix of replacing the hypervisor.h contents with
>code from the sparse kernel's corresponding file. This along
>with a couple of other minor changes got it to compile. But
>it doesn't boot up properly. I'm investigating that a bit in
>my spare time.
>
>
>
>
Thanks for the tip. I'll take a look at it shortly.
Were your you trying to boot it on a 64bit machine?
donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-28 20:23 ` Donour Sizemore
@ 2005-09-28 20:40 ` Dave Olien
2005-09-30 10:04 ` Grzegorz Milos
2005-10-03 19:02 ` Donour Sizemore
0 siblings, 2 replies; 10+ messages in thread
From: Dave Olien @ 2005-09-28 20:40 UTC (permalink / raw)
To: Donour Sizemore; +Cc: xen-devel
Yes, on x86_64. One possibility is that the
mini-os I built was from the recent unstable source, but my dom0 kernel
and hypervisor were built from older sources. There is probably an
incompatbility there. I'll try again using consistent versions when I get
the time.
Let me know what you find.
Dave
On Wed, Sep 28, 2005 at 02:23:42PM -0600, Donour Sizemore wrote:
>
> Were your you trying to boot it on a 64bit machine?
>
> donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-28 20:40 ` Dave Olien
@ 2005-09-30 10:04 ` Grzegorz Milos
2005-10-02 19:53 ` Dave Olien
2005-10-05 16:40 ` Donour Sizemore
2005-10-03 19:02 ` Donour Sizemore
1 sibling, 2 replies; 10+ messages in thread
From: Grzegorz Milos @ 2005-09-30 10:04 UTC (permalink / raw)
To: xen-devel
Hi there guys!
I am currently responsible for mini-os. I've recently updated the code
to make it work under 32 bit (mini-os was not used for quite some time,
almost 2 years if I am correct. Subsequently the changes in the
interfaces broke it).
I've started fixing 64-bit version as well, but now I am busy with
something else. It will therefore have to wait a little unless you are
interested in helping out. I could give you precise list of things than
need fixing is such case.
Cheers
Gregor
Dave Olien wrote:
> Yes, on x86_64. One possibility is that the
> mini-os I built was from the recent unstable source, but my dom0 kernel
> and hypervisor were built from older sources. There is probably an
> incompatbility there. I'll try again using consistent versions when I get
> the time.
>
> Let me know what you find.
>
> Dave
>
> On Wed, Sep 28, 2005 at 02:23:42PM -0600, Donour Sizemore wrote:
>
>>Were your you trying to boot it on a 64bit machine?
>>
>>donour
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-30 10:04 ` Grzegorz Milos
@ 2005-10-02 19:53 ` Dave Olien
2005-10-05 16:40 ` Donour Sizemore
1 sibling, 0 replies; 10+ messages in thread
From: Dave Olien @ 2005-10-02 19:53 UTC (permalink / raw)
To: Grzegorz Milos; +Cc: xen-devel
Gregor,
I think I could spend some time helping out on this. If you could
post the items that still need work, I'll choose some items to work on.
Thanks!
Dave
On Fri, Sep 30, 2005 at 11:04:00AM +0100, Grzegorz Milos wrote:
> Hi there guys!
>
> I am currently responsible for mini-os. I've recently updated the code
> to make it work under 32 bit (mini-os was not used for quite some time,
> almost 2 years if I am correct. Subsequently the changes in the
> interfaces broke it).
>
> I've started fixing 64-bit version as well, but now I am busy with
> something else. It will therefore have to wait a little unless you are
> interested in helping out. I could give you precise list of things than
> need fixing is such case.
>
> Cheers
> Gregor
>
> Dave Olien wrote:
> >Yes, on x86_64. One possibility is that the
> >mini-os I built was from the recent unstable source, but my dom0 kernel
> >and hypervisor were built from older sources. There is probably an
> >incompatbility there. I'll try again using consistent versions when I get
> >the time.
> >
> >Let me know what you find.
> >
> >Dave
> >
> >On Wed, Sep 28, 2005 at 02:23:42PM -0600, Donour Sizemore wrote:
> >
> >>Were your you trying to boot it on a 64bit machine?
> >>
> >>donour
> >
> >
> >_______________________________________________
> >Xen-devel mailing list
> >Xen-devel@lists.xensource.com
> >http://lists.xensource.com/xen-devel
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-30 10:04 ` Grzegorz Milos
2005-10-02 19:53 ` Dave Olien
@ 2005-10-05 16:40 ` Donour Sizemore
1 sibling, 0 replies; 10+ messages in thread
From: Donour Sizemore @ 2005-10-05 16:40 UTC (permalink / raw)
To: Grzegorz Milos; +Cc: xen-devel
> I've started fixing 64-bit version as well, but now I am busy with
> something else. It will therefore have to wait a little unless you are
> interested in helping out. I could give you precise list of things
> than need fixing is such case.
>
Yes. Could you please send out that list. I'm still interested in getting
it working.
donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-09-28 20:40 ` Dave Olien
2005-09-30 10:04 ` Grzegorz Milos
@ 2005-10-03 19:02 ` Donour Sizemore
2005-10-03 19:03 ` Donour Sizemore
2005-10-03 22:11 ` Dave Olien
1 sibling, 2 replies; 10+ messages in thread
From: Donour Sizemore @ 2005-10-03 19:02 UTC (permalink / raw)
To: Dave Olien; +Cc: xen-devel
Dave Olien wrote:
>Yes, on x86_64. One possibility is that the
>mini-os I built was from the recent unstable source, but my dom0 kernel
>and hypervisor were built from older sources. There is probably an
>incompatbility there. I'll try again using consistent versions when I get
>the time.
>
>
I tried this with recent unstable-source, but ran into quite a few
other errors. Specifically, this one has me perplexed:
/usr/include/linux/types.h:34: error: conflicting types for `size_t'
I didn't think that could happen has the x86 and x86_64 hypercall.h
are the same (at least in the linux-2.6-sparse directory).
Did you make any progress since the booting errors?
donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-10-03 19:02 ` Donour Sizemore
@ 2005-10-03 19:03 ` Donour Sizemore
2005-10-03 22:11 ` Dave Olien
1 sibling, 0 replies; 10+ messages in thread
From: Donour Sizemore @ 2005-10-03 19:03 UTC (permalink / raw)
To: Donour Sizemore; +Cc: xen-devel, Dave Olien
>
> I didn't think that could happen has the x86 and x86_64 hypercall.h
err, hypervisor.h
donour
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: mini-os (not a cross post)
2005-10-03 19:02 ` Donour Sizemore
2005-10-03 19:03 ` Donour Sizemore
@ 2005-10-03 22:11 ` Dave Olien
1 sibling, 0 replies; 10+ messages in thread
From: Dave Olien @ 2005-10-03 22:11 UTC (permalink / raw)
To: Donour Sizemore; +Cc: xen-devel
Donour,
I haven't had time yet to really look at it. I'm hoping to have a few
hours this week. I'm also waiting for Grzegorz Milos to post a list of
items that need to be worked on in x86-64 mini-os, and I'll try to
start working on that list.
Dave
On Mon, Oct 03, 2005 at 01:02:21PM -0600, Donour Sizemore wrote:
> Dave Olien wrote:
>
> >Yes, on x86_64. One possibility is that the
> >mini-os I built was from the recent unstable source, but my dom0 kernel
> >and hypervisor were built from older sources. There is probably an
> >incompatbility there. I'll try again using consistent versions when I get
> >the time.
> >
> >
> I tried this with recent unstable-source, but ran into quite a few
> other errors. Specifically, this one has me perplexed:
>
> /usr/include/linux/types.h:34: error: conflicting types for `size_t'
>
> I didn't think that could happen has the x86 and x86_64 hypercall.h
> are the same (at least in the linux-2.6-sparse directory).
>
> Did you make any progress since the booting errors?
>
> donour
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2005-10-05 16:40 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-26 23:02 mini-os (not a cross post) Donour Sizemore
2005-09-28 18:24 ` Dave Olien
2005-09-28 20:23 ` Donour Sizemore
2005-09-28 20:40 ` Dave Olien
2005-09-30 10:04 ` Grzegorz Milos
2005-10-02 19:53 ` Dave Olien
2005-10-05 16:40 ` Donour Sizemore
2005-10-03 19:02 ` Donour Sizemore
2005-10-03 19:03 ` Donour Sizemore
2005-10-03 22:11 ` Dave Olien
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.