All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [Gelato-technical] What's still broken?
@ 2003-10-09 10:25 Peter Chubb
  2003-10-09 15:34 ` Jesse Barnes
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Peter Chubb @ 2003-10-09 10:25 UTC (permalink / raw)
  To: linux-ia64

>>>>> "Ian" = Ian Wienand <ianw@gelato.unsw.edu.au> writes:

Ian> On Thu, Oct 09, 2003 at 03:43:22PM +1000, Peter Chubb wrote:
>> >>>>> "Stephane" = Stephane Eranian <eranian@hpl.hp.com> writes:
Stephane> What about the qla1280 driver? Last time I tried it would
Stephane> crash during boot.  I don't know if it has been fixed.

>> It has been fixed.

Ian> Well it still breaks a generic build as discussed in

Ian> http://www.gelato.unsw.edu.au/linux-ia64/0309/6661.html

That's not so much a qla1280 problem, as a generic build problem ---
it's half baked; it includes ALTIX-specific code in the qla1280
driver, but doesn't build the SN subtree.

A temporary fix would be to change

#if defined(CONFIG_IA64_GENERIC) || defined(CONFIG_IA64_SGI_SN2)

to 

#if defined(CONFIG_IA64_SGI_SN2)

in the QLA1280 driver, at least until the SN2 bits are included in the
generic kernel.

Jesse, is the SN2 stuff you're working on so hard going to be included
in generic builds?  Something like this (which doesn't yet work):

--- /tmp/geta1932	2003-10-09 20:13:51.000000000 +1000
+++ linux-2.5-test7/arch/ia64/Makefile		2003-10-09 20:11:04.000000000 +1000
@@ -57,7 +57,7 @@
 core-y				+= arch/ia64/kernel/ arch/ia64/mm/
 core-$(CONFIG_IA32_SUPPORT)	+= arch/ia64/ia32/
 core-$(CONFIG_IA64_DIG)	+= arch/ia64/dig/
-core-$(CONFIG_IA64_GENERIC)	+= arch/ia64/dig/
+core-$(CONFIG_IA64_GENERIC)	+= arch/ia64/dig/ arch/ia64/sn/
 core-$(CONFIG_IA64_HP_ZX1)	+= arch/ia64/dig/
 core-$(CONFIG_IA64_SGI_SN2)	+= arch/ia64/sn/

--
Dr Peter Chubb  http://www.gelato.unsw.edu.au  peterc AT gelato.unsw.edu.au
You are lost in a maze of BitKeeper repositories,   all slightly different.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Gelato-technical] What's still broken?
  2003-10-09 10:25 [Gelato-technical] What's still broken? Peter Chubb
@ 2003-10-09 15:34 ` Jesse Barnes
  2003-10-15  1:35 ` David Mosberger
  2003-10-15  6:38 ` Peter Chubb
  2 siblings, 0 replies; 4+ messages in thread
From: Jesse Barnes @ 2003-10-09 15:34 UTC (permalink / raw)
  To: linux-ia64

On Thu, Oct 09, 2003 at 08:25:12PM +1000, Peter Chubb wrote:
> Jesse, is the SN2 stuff you're working on so hard going to be included

:)

> in generic builds?  Something like this (which doesn't yet work):

Yep, I've tested it thorougly here, and it works for me.  I don't think
adding the below patch will work until my virtual memmap + discontig
patch (the last one I posted) goes in though.

> --- /tmp/geta1932	2003-10-09 20:13:51.000000000 +1000
> +++ linux-2.5-test7/arch/ia64/Makefile		2003-10-09 20:11:04.000000000 +1000
> @@ -57,7 +57,7 @@
>  core-y				+= arch/ia64/kernel/ arch/ia64/mm/
>  core-$(CONFIG_IA32_SUPPORT)	+= arch/ia64/ia32/
>  core-$(CONFIG_IA64_DIG)	+= arch/ia64/dig/
> -core-$(CONFIG_IA64_GENERIC)	+= arch/ia64/dig/
> +core-$(CONFIG_IA64_GENERIC)	+= arch/ia64/dig/ arch/ia64/sn/
>  core-$(CONFIG_IA64_HP_ZX1)	+= arch/ia64/dig/
>  core-$(CONFIG_IA64_SGI_SN2)	+= arch/ia64/sn/

Thanks,
Jesse

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Gelato-technical] What's still broken?
  2003-10-09 10:25 [Gelato-technical] What's still broken? Peter Chubb
  2003-10-09 15:34 ` Jesse Barnes
@ 2003-10-15  1:35 ` David Mosberger
  2003-10-15  6:38 ` Peter Chubb
  2 siblings, 0 replies; 4+ messages in thread
From: David Mosberger @ 2003-10-15  1:35 UTC (permalink / raw)
  To: linux-ia64

I don't understand this entry:

 Peter> - AGP driver still doesn't build.

I build agpgart.ko, i460-gart.ko, and hp-agp.ko on a regular basis.
I'm not aware of any build issues.

	--david

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Gelato-technical] What's still broken?
  2003-10-09 10:25 [Gelato-technical] What's still broken? Peter Chubb
  2003-10-09 15:34 ` Jesse Barnes
  2003-10-15  1:35 ` David Mosberger
@ 2003-10-15  6:38 ` Peter Chubb
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Chubb @ 2003-10-15  6:38 UTC (permalink / raw)
  To: linux-ia64

>>>>> "David" = David Mosberger <davidm@napali.hpl.hp.com> writes:

David> I don't understand this entry:
Peter> - AGP driver still doesn't build.

David> I build agpgart.ko, i460-gart.ko, and hp-agp.ko on a regular
David> basis.  I'm not aware of any build issues.

It seems to be fixed now.  At the time I tried it there were issues.
I've updated the Wiki.

Petr C

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-10-15  6:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-09 10:25 [Gelato-technical] What's still broken? Peter Chubb
2003-10-09 15:34 ` Jesse Barnes
2003-10-15  1:35 ` David Mosberger
2003-10-15  6:38 ` Peter Chubb

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.