* Current CVS on Indigo2 fail @ 2001-12-13 12:35 Florian Lohoff 2001-12-13 12:52 ` Guido Guenther 2001-12-13 17:10 ` Ian Chilton 0 siblings, 2 replies; 8+ messages in thread From: Florian Lohoff @ 2001-12-13 12:35 UTC (permalink / raw) To: linux-mips [-- Attachment #1: Type: text/plain, Size: 353 bytes --] HI, i just tried to boot the current cvs as of a couple minutes old on an Indigo2 - It seemt the stuff crashes before its even able to print something on the screen. Anyone else ? Flo -- Florian Lohoff flo@rfc822.org +49-5201-669912 Nine nineth on september the 9th Welcome to the new billenium [-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 12:35 Current CVS on Indigo2 fail Florian Lohoff @ 2001-12-13 12:52 ` Guido Guenther 2001-12-13 13:48 ` Florian Lohoff 2001-12-13 17:10 ` Ian Chilton 1 sibling, 1 reply; 8+ messages in thread From: Guido Guenther @ 2001-12-13 12:52 UTC (permalink / raw) To: flo; +Cc: linux-mips On Thu, Dec 13, 2001 at 01:35:22PM +0100, Florian Lohoff wrote: > > HI, > i just tried to boot the current cvs as of a couple minutes old > on an Indigo2 - It seemt the stuff crashes before its even able to > print something on the screen. > > Anyone else ? Can this be the newport vs. I2 issue? I have (again) sent patches to Ralf to solve this problem... -- Guido ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 12:52 ` Guido Guenther @ 2001-12-13 13:48 ` Florian Lohoff 2001-12-13 14:06 ` Guido Guenther 0 siblings, 1 reply; 8+ messages in thread From: Florian Lohoff @ 2001-12-13 13:48 UTC (permalink / raw) To: linux-mips [-- Attachment #1: Type: text/plain, Size: 659 bytes --] On Thu, Dec 13, 2001 at 01:52:29PM +0100, Guido Guenther wrote: > On Thu, Dec 13, 2001 at 01:35:22PM +0100, Florian Lohoff wrote: > > > > HI, > > i just tried to boot the current cvs as of a couple minutes old > > on an Indigo2 - It seemt the stuff crashes before its even able to > > print something on the screen. > > > Can this be the newport vs. I2 issue? I have (again) sent patches to Ralf > to solve this problem... Definitly ? Mind sending me (the list) the patches too ? Flo -- Florian Lohoff flo@rfc822.org +49-5201-669912 Nine nineth on september the 9th Welcome to the new billenium [-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 13:48 ` Florian Lohoff @ 2001-12-13 14:06 ` Guido Guenther 2001-12-13 17:10 ` Florian Lohoff 0 siblings, 1 reply; 8+ messages in thread From: Guido Guenther @ 2001-12-13 14:06 UTC (permalink / raw) To: linux-mips On Thu, Dec 13, 2001 at 02:48:27PM +0100, Florian Lohoff wrote: > On Thu, Dec 13, 2001 at 01:52:29PM +0100, Guido Guenther wrote: > > On Thu, Dec 13, 2001 at 01:35:22PM +0100, Florian Lohoff wrote: > > > > > > HI, > > > i just tried to boot the current cvs as of a couple minutes old > > > on an Indigo2 - It seemt the stuff crashes before its even able to > > > print something on the screen. > > > > > Can this be the newport vs. I2 issue? I have (again) sent patches to Ralf > > to solve this problem... > > Definitly ? Mind sending me (the list) the patches too ? an old version is at: http://honk.physik.uni-konstanz.de/~agx/linux-mips/unsorted-patches/newport-dont-crash-i2-2001-03-25.diff This currently doesn't apply cleanly due to the arch/mips/kernel/sgi to arch/mips/sgi-ip22 movement, but that's just a one line change. I'll update it when back home. -- Guido ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 14:06 ` Guido Guenther @ 2001-12-13 17:10 ` Florian Lohoff 2001-12-13 17:28 ` Guido Guenther 2001-12-14 23:23 ` Ian Chilton 0 siblings, 2 replies; 8+ messages in thread From: Florian Lohoff @ 2001-12-13 17:10 UTC (permalink / raw) To: Guido Guenther; +Cc: linux-mips [-- Attachment #1: Type: text/plain, Size: 2720 bytes --] On Thu, Dec 13, 2001 at 03:06:22PM +0100, Guido Guenther wrote: > > Definitly ? Mind sending me (the list) the patches too ? > an old version is at: > http://honk.physik.uni-konstanz.de/~agx/linux-mips/unsorted-patches/newport-dont-crash-i2-2001-03-25.diff > This currently doesn't apply cleanly due to the arch/mips/kernel/sgi to > arch/mips/sgi-ip22 movement, but that's just a one line change. I'll > update it when back home. It solved the issue ... Here is the patch against current cvs Index: arch/mips/config.in =================================================================== RCS file: /cvs/linux/arch/mips/config.in,v retrieving revision 1.154.2.3 diff -u -r1.154.2.3 config.in --- arch/mips/config.in 2001/12/11 18:39:48 1.154.2.3 +++ arch/mips/config.in 2001/12/13 18:10:33 @@ -556,11 +556,10 @@ comment 'SGI Character devices' if [ "$CONFIG_VT" = "y" ]; then tristate 'SGI Newport Console support' CONFIG_SGI_NEWPORT_CONSOLE - if [ "$CONFIG_SGI_NEWPORT_CONSOLE" != "y" ]; then - define_bool CONFIG_DUMMY_CONSOLE y - else + if [ "$CONFIG_SGI_NEWPORT_CONSOLE" = "y" ]; then define_bool CONFIG_FONT_8x16 y fi + define_bool CONFIG_DUMMY_CONSOLE y fi endmenu fi Index: arch/mips/sgi-ip22/ip22-setup.c =================================================================== RCS file: /cvs/linux/arch/mips/sgi-ip22/ip22-setup.c,v retrieving revision 1.1.2.1 diff -u -r1.1.2.1 ip22-setup.c --- arch/mips/sgi-ip22/ip22-setup.c 2001/12/07 15:45:29 1.1.2.1 +++ arch/mips/sgi-ip22/ip22-setup.c 2001/12/13 18:10:33 @@ -182,19 +182,23 @@ #ifdef CONFIG_VT #ifdef CONFIG_SGI_NEWPORT_CONSOLE - conswitchp = &newport_con; + if( mips_machtype == MACH_SGI_INDY ) { + conswitchp = &newport_con; - screen_info = (struct screen_info) { - 0, 0, /* orig-x, orig-y */ - 0, /* unused */ - 0, /* orig_video_page */ - 0, /* orig_video_mode */ - 160, /* orig_video_cols */ - 0, 0, 0, /* unused, ega_bx, unused */ - 64, /* orig_video_lines */ - 0, /* orig_video_isVGA */ - 16 /* orig_video_points */ - }; + screen_info = (struct screen_info) { + 0, 0, /* orig-x, orig-y */ + 0, /* unused */ + 0, /* orig_video_page */ + 0, /* orig_video_mode */ + 160, /* orig_video_cols */ + 0, 0, 0, /* unused, ega_bx, unused */ + 64, /* orig_video_lines */ + 0, /* orig_video_isVGA */ + 16 /* orig_video_points */ + }; + } else { + conswitchp = &dummy_con; + } #else conswitchp = &dummy_con; #endif Flo -- Florian Lohoff flo@rfc822.org +49-5201-669912 Nine nineth on september the 9th Welcome to the new billenium [-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 17:10 ` Florian Lohoff @ 2001-12-13 17:28 ` Guido Guenther 2001-12-14 23:23 ` Ian Chilton 1 sibling, 0 replies; 8+ messages in thread From: Guido Guenther @ 2001-12-13 17:28 UTC (permalink / raw) To: Florian Lohoff; +Cc: linux-mips On Thu, Dec 13, 2001 at 06:10:43PM +0100, Florian Lohoff wrote: > On Thu, Dec 13, 2001 at 03:06:22PM +0100, Guido Guenther wrote: > > > Definitly ? Mind sending me (the list) the patches too ? > > an old version is at: > > http://honk.physik.uni-konstanz.de/~agx/linux-mips/unsorted-patches/newport-dont-crash-i2-2001-03-25.diff > > This currently doesn't apply cleanly due to the arch/mips/kernel/sgi to > > arch/mips/sgi-ip22 movement, but that's just a one line change. I'll > > update it when back home. > > It solved the issue ... Here is the patch against current cvs Which is exactly what I sent to Ralf just yesterday evening ;-) -- Guido > > > Index: arch/mips/config.in > =================================================================== > RCS file: /cvs/linux/arch/mips/config.in,v > retrieving revision 1.154.2.3 > diff -u -r1.154.2.3 config.in > --- arch/mips/config.in 2001/12/11 18:39:48 1.154.2.3 > +++ arch/mips/config.in 2001/12/13 18:10:33 > @@ -556,11 +556,10 @@ > comment 'SGI Character devices' > if [ "$CONFIG_VT" = "y" ]; then > tristate 'SGI Newport Console support' CONFIG_SGI_NEWPORT_CONSOLE > - if [ "$CONFIG_SGI_NEWPORT_CONSOLE" != "y" ]; then > - define_bool CONFIG_DUMMY_CONSOLE y > - else > + if [ "$CONFIG_SGI_NEWPORT_CONSOLE" = "y" ]; then > define_bool CONFIG_FONT_8x16 y > fi > + define_bool CONFIG_DUMMY_CONSOLE y > fi > endmenu > fi > Index: arch/mips/sgi-ip22/ip22-setup.c > =================================================================== > RCS file: /cvs/linux/arch/mips/sgi-ip22/ip22-setup.c,v > retrieving revision 1.1.2.1 > diff -u -r1.1.2.1 ip22-setup.c > --- arch/mips/sgi-ip22/ip22-setup.c 2001/12/07 15:45:29 1.1.2.1 > +++ arch/mips/sgi-ip22/ip22-setup.c 2001/12/13 18:10:33 > @@ -182,19 +182,23 @@ > > #ifdef CONFIG_VT > #ifdef CONFIG_SGI_NEWPORT_CONSOLE > - conswitchp = &newport_con; > + if( mips_machtype == MACH_SGI_INDY ) { > + conswitchp = &newport_con; > > - screen_info = (struct screen_info) { > - 0, 0, /* orig-x, orig-y */ > - 0, /* unused */ > - 0, /* orig_video_page */ > - 0, /* orig_video_mode */ > - 160, /* orig_video_cols */ > - 0, 0, 0, /* unused, ega_bx, unused */ > - 64, /* orig_video_lines */ > - 0, /* orig_video_isVGA */ > - 16 /* orig_video_points */ > - }; > + screen_info = (struct screen_info) { > + 0, 0, /* orig-x, orig-y */ > + 0, /* unused */ > + 0, /* orig_video_page */ > + 0, /* orig_video_mode */ > + 160, /* orig_video_cols */ > + 0, 0, 0, /* unused, ega_bx, unused */ > + 64, /* orig_video_lines */ > + 0, /* orig_video_isVGA */ > + 16 /* orig_video_points */ > + }; > + } else { > + conswitchp = &dummy_con; > + } > #else > conswitchp = &dummy_con; > #endif > > Flo > -- > Florian Lohoff flo@rfc822.org +49-5201-669912 > Nine nineth on september the 9th Welcome to the new billenium -- This kind of limitation can lead administrators to do irrational things, like install Windows. Clearly a fix was required. (lwn.net) ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 17:10 ` Florian Lohoff 2001-12-13 17:28 ` Guido Guenther @ 2001-12-14 23:23 ` Ian Chilton 1 sibling, 0 replies; 8+ messages in thread From: Ian Chilton @ 2001-12-14 23:23 UTC (permalink / raw) To: Florian Lohoff; +Cc: agx, linux-mips Hello, > It solved the issue ... Here is the patch against current cvs I sync'd with cvs and tried to apply this patch and it failed. Without the patch, the kernel doesn't work on my I2: Command Monitor. Type "exit" to return to the menu. >> bootp():/vmlinux Setting $netaddr to 192.168.0.13 (from server ) Obtaining /vmlinux from server | [hangs here] Bye for Now, Ian ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Current CVS on Indigo2 fail 2001-12-13 12:35 Current CVS on Indigo2 fail Florian Lohoff 2001-12-13 12:52 ` Guido Guenther @ 2001-12-13 17:10 ` Ian Chilton 1 sibling, 0 replies; 8+ messages in thread From: Ian Chilton @ 2001-12-13 17:10 UTC (permalink / raw) To: Florian Lohoff; +Cc: linux-mips Hello, > i just tried to boot the current cvs as of a couple minutes old > on an Indigo2 - It seemt the stuff crashes before its even able to > print something on the screen. > Anyone else ? Me - I told you about it in #mipslinux the other day, remember? Thanks Ian ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2001-12-15 0:23 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2001-12-13 12:35 Current CVS on Indigo2 fail Florian Lohoff 2001-12-13 12:52 ` Guido Guenther 2001-12-13 13:48 ` Florian Lohoff 2001-12-13 14:06 ` Guido Guenther 2001-12-13 17:10 ` Florian Lohoff 2001-12-13 17:28 ` Guido Guenther 2001-12-14 23:23 ` Ian Chilton 2001-12-13 17:10 ` Ian Chilton
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox