Index: Makefile =================================================================== RCS file: /home/cvs/linux/Makefile,v retrieving revision 1.213 diff -u -r1.213 Makefile --- Makefile 11 Mar 2004 16:46:39 -0000 1.213 +++ Makefile 19 Mar 2004 08:00:03 -0000 @@ -1,7 +1,7 @@ VERSION = 2 PATCHLEVEL = 6 SUBLEVEL = 4 -EXTRAVERSION = +EXTRAVERSION = iluxa_minsetIP32 NAME=Feisty Dunnart # *DOCUMENTATION* Index: arch/mips/Makefile =================================================================== RCS file: /home/cvs/linux/arch/mips/Makefile,v retrieving revision 1.164 diff -u -r1.164 Makefile --- arch/mips/Makefile 22 Feb 2004 02:17:52 -0000 1.164 +++ arch/mips/Makefile 19 Mar 2004 08:00:18 -0000 @@ -35,13 +35,14 @@ endif ifdef CONFIG_MIPS64 gcc-abi = 64 -gas-abi = 32 +#gas-abi = 32 +gas-abi = o64 tool-prefix = $(64bit-tool-prefix) UTS_MACHINE := mips64 endif ifdef CONFIG_CROSSCOMPILE -CROSS_COMPILE := $(tool-prefix) +CROSS_COMPILE := /crossdev/$(UTS_MACHINE)/bin/$(tool-prefix) endif # @@ -98,7 +99,7 @@ else \ gcc_abi=; gcc_isa=-$(5); \ fi; \ -gas_abi=-Wa,-$(gcc-abi); gas_cpu=$$cpu; gas_isa=-Wa,$$isa; \ +gas_abi=-Wa,-mabi=$(gcc-abi); gas_cpu=$$cpu; gas_isa=-Wa,$$isa; \ while :; do \ for gas_opt in -Wa,-march= -Wa,-mcpu=; do \ $(CC) $$gas_abi $$gas_opt$$cpu $$gas_isa -Wa,-Z -c \ @@ -109,7 +110,7 @@ break; \ done; \ if test x$(gcc-abi) != x$(gas-abi); then \ - gas_abi="-Wa,-$(gas-abi) -Wa,-mgp$(gcc-abi)"; \ + gas_abi="-Wa,-mabi=$(gas-abi) -Wa,-mgp$(gcc-abi)"; \ fi; \ echo $$gcc_abi $$gcc_opt$$gcc_cpu $$gcc_isa $$gas_abi $$gas_opt$$gas_cpu $$gas_isa) @@ -621,7 +622,7 @@ # ELF files from 32-bit files by conversion. # #AS += -64 -#LDFLAGS += -m elf64bmip +LDFLAGS += -m elf64btsmip # # Choosing incompatible machines durings configuration will result in Index: arch/mips/sgi-ip32/ip32-reset.c =================================================================== RCS file: /home/cvs/linux/arch/mips/sgi-ip32/ip32-reset.c,v retrieving revision 1.7 diff -u -r1.7 ip32-reset.c --- arch/mips/sgi-ip32/ip32-reset.c 30 Jan 2004 14:14:14 -0000 1.7 +++ arch/mips/sgi-ip32/ip32-reset.c 19 Mar 2004 08:00:23 -0000 @@ -189,6 +189,7 @@ _machine_restart = ip32_machine_restart; _machine_halt = ip32_machine_halt; _machine_power_off = ip32_machine_power_off; + return 0; request_irq(MACEISA_RTC_IRQ, ip32_rtc_int, 0, "rtc", NULL); init_timer(&blink_timer); blink_timer.function = blink_timeout; Index: drivers/scsi/aic7xxx/aic7xxx_osm_pci.c =================================================================== RCS file: /home/cvs/linux/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c,v retrieving revision 1.10 diff -u -r1.10 aic7xxx_osm_pci.c --- drivers/scsi/aic7xxx/aic7xxx_osm_pci.c 5 Feb 2004 02:40:03 -0000 1.10 +++ drivers/scsi/aic7xxx/aic7xxx_osm_pci.c 19 Mar 2004 08:00:47 -0000 @@ -312,7 +312,7 @@ command &= ~(PCIM_CMD_PORTEN|PCIM_CMD_MEMEN); base = 0; maddr = NULL; - error = ahc_linux_pci_reserve_mem_region(ahc, &base, &maddr); + error = -EBUSY;//ahc_linux_pci_reserve_mem_region(ahc, &base, &maddr); if (error == 0) { ahc->platform_data->mem_busaddr = base; ahc->tag = BUS_SPACE_MEMIO; Index: drivers/video/gbefb.c =================================================================== RCS file: /home/cvs/linux/drivers/video/gbefb.c,v retrieving revision 1.2 diff -u -r1.2 gbefb.c --- drivers/video/gbefb.c 10 Mar 2004 23:10:08 -0000 1.2 +++ drivers/video/gbefb.c 19 Mar 2004 08:00:50 -0000 @@ -18,7 +18,6 @@ #include #include #include -#include #include #ifdef CONFIG_X86 @@ -1089,6 +1088,7 @@ } gbe = (struct sgi_gbe *) ioremap(GBE_BASE, sizeof(struct sgi_gbe)); + printk("GBE INIT\n"); if (!gbe) { printk(KERN_ERR "gbefb: couldn't map mmio region\n"); ret = -ENXIO; Index: include/asm-mips/page-64.h =================================================================== RCS file: /home/cvs/linux/include/asm-mips/Attic/page-64.h,v retrieving revision 1.3 diff -u -r1.3 page-64.h --- include/asm-mips/page-64.h 30 Nov 2003 01:52:25 -0000 1.3 +++ include/asm-mips/page-64.h 19 Mar 2004 08:01:00 -0000 @@ -15,7 +15,8 @@ * This handles the memory map. */ #ifdef CONFIG_DMA_NONCOHERENT -#define PAGE_OFFSET 0x9800000000000000UL +//#define PAGE_OFFSET 0x9800000000000000UL +#define PAGE_OFFSET 0xffffffff80000000UL #else #define PAGE_OFFSET 0xa800000000000000UL #endif