* [Linux-ia64] [PATCH] 2.5.67 GENERIC kernel fixes
@ 2003-04-14 22:36 Alex Williamson
0 siblings, 0 replies; only message in thread
From: Alex Williamson @ 2003-04-14 22:36 UTC (permalink / raw)
To: linux-ia64
[-- Attachment #1: Type: text/plain, Size: 478 bytes --]
This fixes a couple problems with the generic target in the latest
2.5.67 kernel. First is simply a fix for the addition of readX in
the machvec. The second gets things to link in roughly the same order
when using a generic vs zx1 flavor. With the current code, sba_init()
is called in the right place when using a zx1 flavor kernel, but
happens way too early on a generic kernel. Thanks,
Alex
--
Alex Williamson HP Linux & Open Source Lab
[-- Attachment #2: machvec_fix.diff --]
[-- Type: text/plain, Size: 572 bytes --]
--- linux-2.5.67.clean/include/asm-ia64/machvec_init.h Mon Apr 14 14:13:06 2003
+++ linux-2.5.67/include/asm-ia64/machvec_init.h Mon Apr 14 15:20:59 2003
@@ -16,6 +16,10 @@
extern ia64_mv_outb_t __ia64_outb;
extern ia64_mv_outw_t __ia64_outw;
extern ia64_mv_outl_t __ia64_outl;
+extern ia64_mv_readb_t __ia64_readb;
+extern ia64_mv_readw_t __ia64_readw;
+extern ia64_mv_readl_t __ia64_readl;
+extern ia64_mv_readq_t __ia64_readq;
#define MACHVEC_HELPER(name) \
struct ia64_machine_vector machvec_##name __attribute__ ((unused, __section__ (".machvec"))) \
[-- Attachment #3: link_order.diff --]
[-- Type: text/plain, Size: 854 bytes --]
--- linux-2.5.67.clean/arch/ia64/Makefile Mon Apr 14 14:13:06 2003
+++ linux-2.5.67/arch/ia64/Makefile Mon Apr 14 16:06:07 2003
@@ -48,14 +48,14 @@
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/ arch/ia64/hp/common/ arch/ia64/hp/zx1/ \
- arch/ia64/hp/sim/
+core-$(CONFIG_IA64_GENERIC) += arch/ia64/dig/
core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/
core-$(CONFIG_IA64_SGI_SN) += arch/ia64/sn/
drivers-$(CONFIG_PCI) += arch/ia64/pci/
drivers-$(CONFIG_IA64_HP_SIM) += arch/ia64/hp/sim/
drivers-$(CONFIG_IA64_HP_ZX1) += arch/ia64/hp/common/ arch/ia64/hp/zx1/
+drivers-$(CONFIG_IA64_GENERIC) += arch/ia64/hp/common/ arch/ia64/hp/zx1/ arch/ia64/hp/sim/
boot := arch/ia64/boot
tools := arch/ia64/tools
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-04-14 22:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-14 22:36 [Linux-ia64] [PATCH] 2.5.67 GENERIC kernel fixes Alex Williamson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox