es40-developers Mailing List for AlphaServer ES40 Emulator (Page 8)
Status: Alpha
Brought to you by:
iamcamiel
You can subscribe to this list here.
2008 |
Jan
|
Feb
(132) |
Mar
(117) |
Apr
(27) |
May
(1) |
Jun
(16) |
Jul
|
Aug
|
Sep
(4) |
Oct
(5) |
Nov
(2) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Camiel V. <iam...@gm...> - 2008-03-02 09:57:04
|
Hi Pepito, Thanks, I put it into CVS. Camiel. On Sat, Mar 1, 2008 at 3:48 PM, Pepito Grillo <pep...@ya...> wrote: > Hi! > a tiny patch to solve warnings about: > warning: deprecated conversion from string constant to > 'char*' > > > Index: Configurator.cpp > =================================================================== > RCS file: /cvsroot/es40/es40/src/Configurator.cpp,v > retrieving revision 1.18 > diff -r1.18 Configurator.cpp > 478c478 > < char * CConfigurator::get_text_value(char * n, char > * def) > --- > > char * CConfigurator::get_text_value(const char * n, > char * def) > 503c503 > < bool CConfigurator::get_bool_value(char * n, bool > def) > --- > > bool CConfigurator::get_bool_value(const char * n, > bool def) > 537c537 > < int CConfigurator::get_int_value(char * n, int def) > --- > > int CConfigurator::get_int_value(const char * n, int > def) > Index: Configurator.h > =================================================================== > RCS file: /cvsroot/es40/es40/src/Configurator.h,v > retrieving revision 1.10 > diff -r1.10 Configurator.h > 103,104c103,104 > < char * get_text_value(char * n) { return > get_text_value(n, (char*)0); }; > < char * get_text_value(char * n, char * def); > --- > > char * get_text_value(const char * n) { return > get_text_value(n, (char*)0); > > char * get_text_value(const char * n, char * def); > 106,107c106,107 > < bool get_bool_value(char * n) { return > get_bool_value(n, false); }; > < bool get_bool_value(char * n, bool def); > --- > > bool get_bool_value(const char * n) { return > get_bool_value(n, false); }; > > bool get_bool_value(const char * n, bool def); > 109,110c109,110 > < int get_int_value(char * n) { return > get_int_value(n, 0); }; > < int get_int_value(char * n, int def); > --- > > int get_int_value(const char * n) { return > get_int_value(n, 0); }; > > int get_int_value(const char * n, int def); > > > > > ______________________________________________ > ¿Con Mascota por primera vez? Sé un mejor Amigo. Entra en Yahoo! Respuestas http://es.answers.yahoo.com/info/welcome > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Camiel V. <iam...@gm...> - 2008-03-02 09:56:34
|
Thanks Brian, I applied your change. Another change I made is to numeric values in the config file, useful for specifying disk sizes: 100 MB can now be specified as "100M"; 1,5 GB as "1G512M". Camiel. On Fri, Feb 29, 2008 at 9:05 PM, Brian Wheeler <bdw...@in...> wrote: > Because it seemed like a funny thing to do (and I'm easily amused), I > fixed the system memory allocator so memory bits greater than 30 can be > used. > > > Memory Testing and Configuration Status > Array Size Base Address Intlv Mode > --------- ---------- ---------------- ---------- > 0 8192Mb 0000000000000000 4-Way > > 8192 MB of System Memory > AlphaServer ES40 Console V7.2-1, built on Jun 9 2006 at 15:36:48 > P00>>> > > The linux box running it (an 8-cpu Opteron w/36G RAM): > > top - 14:51:50 up 134 days, 6:56, 7 users, load average: 1.36, 0.90, 0.60 > Tasks: 213 total, 3 running, 210 sleeping, 0 stopped, 0 zombie > Cpu(s): 12.9%us, 1.6%sy, 0.0%ni, 83.7%id, 1.2%wa, 0.2%hi, 0.5%si, 0.0%st > Mem: 37120580k total, 34210544k used, 2910036k free, 76832k buffers > Swap: 2031608k total, 156k used, 2031452k free, 28809312k cached > > PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND > 28570 bdwheele 25 0 8238m 139m 1840 R 100 0.4 2:55.65 es40 > 28787 bdwheele 15 0 12716 1144 800 R 2 0.0 0:00.06 top > 1675 root 15 0 0 0 0 R 0 0.0 0:52.37 pdflush > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > > |
From: Camiel V. <iam...@gm...> - 2008-03-01 17:13:40
|
Hi Brian, The reason I had for saving the stats is that the data that is generated by running the "set sys_serial_num" and "buildfru" SRM-commands is saved in DPR. We should probably generate some of the data (psu/temp/fan status and system boot time, for instance) each time though. I'll think about that some... Camiel. On Sat, Mar 1, 2008 at 5:39 PM, brian wheeler <bdw...@in...> wrote: > Interesting. I'll take a look at that. I made some changes to DPR > (currently in CVS) which gives this output: > > P00>>>show power > Status > Power Supply 0 Good > Power Supply 1 Good > Power Supply 2 Good > > System Fan 1 Good > System Fan 2 Good > System Fan 3 Good > System Fan 4 Good > System Fan 5 Good > System Fan 6 Good > CPU 0 Temperature Good > > CPU 1 Temperature Not Available > CPU 2 Temperature Not Available > CPU 3 Temperature Not Available > Zone 0 Temperature Good > Zone 1 Temperature Good > Zone 2 Temperature Good > P00>>> > > But the catch is this: The DPR state gets saved in dpr.rom, so if > you've run es40 before the cvs changes happened, you'll still get the > old values. > > Camiel, is there any reason to save that state, or can it be generated > fresh each time? > > Brian > > > > > On Fri, 2008-02-29 at 15:58 -0600, Hittner, David T. wrote: > > I don't know if you've tried this - > > > > At the SRM console prompt, you can see the power/temperature state. > > We might need to 'tweak' the CPU registers to simulate a better hardware > > state for the OS's. > > > > P00>>>show power > > Status > > Power Supply 0 Bad > > Power Supply 1 Bad > > Power Supply 2 Bad > > System Fan 1 Good > > System Fan 2 Good > > System Fan 3 Good > > System Fan 4 Good > > System Fan 5 Good > > System Fan 6 Good > > CPU 0 Temperature Warning > > CPU 1 Temperature Not Available > > CPU 2 Temperature Not Available > > CPU 3 Temperature Not Available > > Zone 0 Temperature Warning > > Zone 1 Temperature Warning > > Zone 2 Temperature Warning > > P00>>> > > > > -----Original Message----- > > From: es4...@li... > > [mailto:es4...@li...] On Behalf Of > > Brian Wheeler > > Sent: Friday, February 29, 2008 9:28 AM > > To: ES40 Developer Discussions > > Subject: Re: [ES40-developers] tru64 5.1 boot > > > > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 > > happy. > > > > Oh, if you've got an existing dpr.rom file, you'll probably want to > > remove it since earlier defaults will show the system temperature is too > > hot and one of the power supplies have failed... > > > > Brian > > > > > > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > > > hello all, > > > > > > i'm trying to boot Tru64 5.1, but I have a problem during the first > > > step, it seems the installation is starting, even if I have some KBD > > > errors, like this: > > > > > > kbd: command f8: not recognized! > > > > > > but after a while the alpha console becomes black, and nothing > > > happens. I supposed a blank screen (of graphic display), but I cannot > > > interact anymore with the console. > > > > > > I'm running a windows version of ES40 and I also tried with icache > > > false or true, with the same result. > > > > > > regards, > > > fausto > > > > > > > > > ---------------------------------------------------------------------- > > > --- This SF.net email is sponsored by: Microsoft Defy all challenges. > > > Microsoft(R) Visual Studio 2008. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > Es40-developers mailing list > > > Es4...@li... > > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > > > > ------------------------------------------------------------------------ > > - > > This SF.net email is sponsored by: Microsoft Defy all challenges. > > Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: brian w. <bdw...@in...> - 2008-03-01 16:39:30
|
Interesting. I'll take a look at that. I made some changes to DPR (currently in CVS) which gives this output: P00>>>show power Status Power Supply 0 Good Power Supply 1 Good Power Supply 2 Good System Fan 1 Good System Fan 2 Good System Fan 3 Good System Fan 4 Good System Fan 5 Good System Fan 6 Good CPU 0 Temperature Good CPU 1 Temperature Not Available CPU 2 Temperature Not Available CPU 3 Temperature Not Available Zone 0 Temperature Good Zone 1 Temperature Good Zone 2 Temperature Good P00>>> But the catch is this: The DPR state gets saved in dpr.rom, so if you've run es40 before the cvs changes happened, you'll still get the old values. Camiel, is there any reason to save that state, or can it be generated fresh each time? Brian On Fri, 2008-02-29 at 15:58 -0600, Hittner, David T. wrote: > I don't know if you've tried this - > > At the SRM console prompt, you can see the power/temperature state. > We might need to 'tweak' the CPU registers to simulate a better hardware > state for the OS's. > > P00>>>show power > Status > Power Supply 0 Bad > Power Supply 1 Bad > Power Supply 2 Bad > System Fan 1 Good > System Fan 2 Good > System Fan 3 Good > System Fan 4 Good > System Fan 5 Good > System Fan 6 Good > CPU 0 Temperature Warning > CPU 1 Temperature Not Available > CPU 2 Temperature Not Available > CPU 3 Temperature Not Available > Zone 0 Temperature Warning > Zone 1 Temperature Warning > Zone 2 Temperature Warning > P00>>> > > -----Original Message----- > From: es4...@li... > [mailto:es4...@li...] On Behalf Of > Brian Wheeler > Sent: Friday, February 29, 2008 9:28 AM > To: ES40 Developer Discussions > Subject: Re: [ES40-developers] tru64 5.1 boot > > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 > happy. > > Oh, if you've got an existing dpr.rom file, you'll probably want to > remove it since earlier defaults will show the system temperature is too > hot and one of the power supplies have failed... > > Brian > > > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > > hello all, > > > > i'm trying to boot Tru64 5.1, but I have a problem during the first > > step, it seems the installation is starting, even if I have some KBD > > errors, like this: > > > > kbd: command f8: not recognized! > > > > but after a while the alpha console becomes black, and nothing > > happens. I supposed a blank screen (of graphic display), but I cannot > > interact anymore with the console. > > > > I'm running a windows version of ES40 and I also tried with icache > > false or true, with the same result. > > > > regards, > > fausto > > > > > > ---------------------------------------------------------------------- > > --- This SF.net email is sponsored by: Microsoft Defy all challenges. > > Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft Defy all challenges. > Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers |
From: Fausto S. <fa...@un...> - 2008-03-01 16:28:54
|
Hello, i'm trying to boot tru64 in graphic mode... using win32 driver. I noticed a strange message when the alpha console switch in graphic mode, I have: dimension update x=640 y=400 fontheight=0 fontwidth=0 bpp=8 Is it normal that fontheight and width are 0? Then when the installation procedure tries to start the X server, I have: dimension update x=640 y=480 fontheight=0 fontwidth=0 bpp=8 Maybe those 0's are the problem? regards, fausto |
From: Fausto S. <fa...@un...> - 2008-03-01 16:12:17
|
Hello all, during freebsd 6.2 boot I had these two warnings: [ mii_access(): UNIMPLEMENTED MII opcode 1243736 (probably just a bug in GXemul' s MII data stream handling) ] [ mii_access(): UNIMPLEMENTED MII opcode 1243736 (probably just a bug in GXemul' s MII data stream handling) ] maybe it's better to remove GXemul reference :-) With SCSI disks the installation is not possible because no disks are recognized. Fausto |
From: Pepito G. <pep...@ya...> - 2008-03-01 14:48:39
|
Hi! a tiny patch to solve warnings about: warning: deprecated conversion from string constant to 'char*' Index: Configurator.cpp =================================================================== RCS file: /cvsroot/es40/es40/src/Configurator.cpp,v retrieving revision 1.18 diff -r1.18 Configurator.cpp 478c478 < char * CConfigurator::get_text_value(char * n, char * def) --- > char * CConfigurator::get_text_value(const char * n, char * def) 503c503 < bool CConfigurator::get_bool_value(char * n, bool def) --- > bool CConfigurator::get_bool_value(const char * n, bool def) 537c537 < int CConfigurator::get_int_value(char * n, int def) --- > int CConfigurator::get_int_value(const char * n, int def) Index: Configurator.h =================================================================== RCS file: /cvsroot/es40/es40/src/Configurator.h,v retrieving revision 1.10 diff -r1.10 Configurator.h 103,104c103,104 < char * get_text_value(char * n) { return get_text_value(n, (char*)0); }; < char * get_text_value(char * n, char * def); --- > char * get_text_value(const char * n) { return get_text_value(n, (char*)0); > char * get_text_value(const char * n, char * def); 106,107c106,107 < bool get_bool_value(char * n) { return get_bool_value(n, false); }; < bool get_bool_value(char * n, bool def); --- > bool get_bool_value(const char * n) { return get_bool_value(n, false); }; > bool get_bool_value(const char * n, bool def); 109,110c109,110 < int get_int_value(char * n) { return get_int_value(n, 0); }; < int get_int_value(char * n, int def); --- > int get_int_value(const char * n) { return get_int_value(n, 0); }; > int get_int_value(const char * n, int def); ______________________________________________ ¿Con Mascota por primera vez? Sé un mejor Amigo. Entra en Yahoo! Respuestas http://es.answers.yahoo.com/info/welcome |
From: Camiel V. <iam...@gm...> - 2008-03-01 10:03:53
|
Hi David, Brian made a patch for this, if you get the latest version from CVS, and delete your existing dpr.rom, these messages will disappear. Camiel. On Fri, Feb 29, 2008 at 10:58 PM, Hittner, David T. <dav...@ng...> wrote: > I don't know if you've tried this - > > At the SRM console prompt, you can see the power/temperature state. > We might need to 'tweak' the CPU registers to simulate a better hardware > state for the OS's. > > P00>>>show power > Status > Power Supply 0 Bad > Power Supply 1 Bad > Power Supply 2 Bad > System Fan 1 Good > System Fan 2 Good > System Fan 3 Good > System Fan 4 Good > System Fan 5 Good > System Fan 6 Good > CPU 0 Temperature Warning > CPU 1 Temperature Not Available > CPU 2 Temperature Not Available > CPU 3 Temperature Not Available > Zone 0 Temperature Warning > Zone 1 Temperature Warning > Zone 2 Temperature Warning > P00>>> > > > > -----Original Message----- > From: es4...@li... > [mailto:es4...@li...] On Behalf Of > Brian Wheeler > Sent: Friday, February 29, 2008 9:28 AM > To: ES40 Developer Discussions > Subject: Re: [ES40-developers] tru64 5.1 boot > > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 > happy. > > Oh, if you've got an existing dpr.rom file, you'll probably want to > remove it since earlier defaults will show the system temperature is too > hot and one of the power supplies have failed... > > Brian > > > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > > hello all, > > > > i'm trying to boot Tru64 5.1, but I have a problem during the first > > step, it seems the installation is starting, even if I have some KBD > > errors, like this: > > > > kbd: command f8: not recognized! > > > > but after a while the alpha console becomes black, and nothing > > happens. I supposed a blank screen (of graphic display), but I cannot > > interact anymore with the console. > > > > I'm running a windows version of ES40 and I also tried with icache > > false or true, with the same result. > > > > regards, > > fausto > > > > > > ---------------------------------------------------------------------- > > --- This SF.net email is sponsored by: Microsoft Defy all challenges. > > Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------ > - > This SF.net email is sponsored by: Microsoft Defy all challenges. > Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Fausto S. <fa...@un...> - 2008-02-29 22:06:46
|
Hello all, provided that I'm running ES40 with icache=true, the tru64 installation crashes with the following error: Creating the root file system on device dsk0a panic (cpu 0): ialloc: dup alloc syncing disks... done Did you get the same error? Btw, I'll try with icache=false... fausto Quoting Brian Wheeler <bdw...@in...>: > > On Fri, 2008-02-29 at 19:47 +0100, Fausto Saporito wrote: >> Hello Brian, >> >> now the 0xf8 is ok, but not 0xab and 0xaf ... > > Those codes are safe to ignore, I think. > >> I have still the error >> for those command codes. >> My issue is with X server, after a while the alpha console become >> black and I cannot continue the installation... >> > > Interesting. I've not tried an install with the card in. > > >> I have to check the docs about a non-graphical installation... I >> suppose it's possible, isn't it? >> > > Yep. Just answer a bunch of questions on the serial port. > > Brian > > >> regards, >> fausto >> >> Quoting Brian Wheeler <bdw...@in...>: >> >> > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 >> > happy. >> > >> > Oh, if you've got an existing dpr.rom file, you'll probably want to >> > remove it since earlier defaults will show the system temperature is too >> > hot and one of the power supplies have failed... >> > >> > Brian >> > >> > >> > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: >> >> hello all, >> >> >> >> i'm trying to boot Tru64 5.1, but I have a problem during the first >> >> step, it seems the installation is starting, even if I have some KBD >> >> errors, like this: >> >> >> >> kbd: command f8: not recognized! >> >> >> >> but after a while the alpha console becomes black, and nothing >> >> happens. I supposed a blank screen (of graphic display), but I cannot >> >> interact anymore with the console. >> >> >> >> I'm running a windows version of ES40 and I also tried with icache >> >> false or true, with the same result. >> >> >> >> regards, >> >> fausto >> >> >> >> >> >> ------------------------------------------------------------------------- >> >> This SF.net email is sponsored by: Microsoft >> >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> >> _______________________________________________ >> >> Es40-developers mailing list >> >> Es4...@li... >> >> https://lists.sourceforge.net/lists/listinfo/es40-developers >> > >> > >> > ------------------------------------------------------------------------- >> > This SF.net email is sponsored by: Microsoft >> > Defy all challenges. Microsoft(R) Visual Studio 2008. >> > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> > _______________________________________________ >> > Es40-developers mailing list >> > Es4...@li... >> > https://lists.sourceforge.net/lists/listinfo/es40-developers >> > >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Es40-developers mailing list >> Es4...@li... >> https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Hittner, D. T. <dav...@ng...> - 2008-02-29 21:59:00
|
I don't know if you've tried this - At the SRM console prompt, you can see the power/temperature state. We might need to 'tweak' the CPU registers to simulate a better hardware state for the OS's. P00>>>show power Status Power Supply 0 Bad Power Supply 1 Bad Power Supply 2 Bad System Fan 1 Good System Fan 2 Good System Fan 3 Good System Fan 4 Good System Fan 5 Good System Fan 6 Good CPU 0 Temperature Warning CPU 1 Temperature Not Available CPU 2 Temperature Not Available CPU 3 Temperature Not Available Zone 0 Temperature Warning Zone 1 Temperature Warning Zone 2 Temperature Warning P00>>> -----Original Message----- From: es4...@li... [mailto:es4...@li...] On Behalf Of Brian Wheeler Sent: Friday, February 29, 2008 9:28 AM To: ES40 Developer Discussions Subject: Re: [ES40-developers] tru64 5.1 boot The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 happy. Oh, if you've got an existing dpr.rom file, you'll probably want to remove it since earlier defaults will show the system temperature is too hot and one of the power supplies have failed... Brian On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > hello all, > > i'm trying to boot Tru64 5.1, but I have a problem during the first > step, it seems the installation is starting, even if I have some KBD > errors, like this: > > kbd: command f8: not recognized! > > but after a while the alpha console becomes black, and nothing > happens. I supposed a blank screen (of graphic display), but I cannot > interact anymore with the console. > > I'm running a windows version of ES40 and I also tried with icache > false or true, with the same result. > > regards, > fausto > > > ---------------------------------------------------------------------- > --- This SF.net email is sponsored by: Microsoft Defy all challenges. > Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Es40-developers mailing list Es4...@li... https://lists.sourceforge.net/lists/listinfo/es40-developers |
From: Hittner, D. T. <dav...@ng...> - 2008-02-29 20:15:13
|
Well, an RMS error indicates that it probably timed out while trying to execute the kitinstal (installation) procedure. Not real suprising, given the current maturity level of ES40. We've been fighting installation stability issues for a while now. Depending on what the IDLE software does, it may or may not help with the ES40 load. If it replaces the standard idle loop with a timed sleep, you may see some difference - otherwise, they may have implemented an 'idle' cpu instruction that they are calling that ES40 doesn't provide, so you may see no difference. Dave > -----Original Message----- > From: es4...@li... > [mailto:es4...@li...] On > Behalf Of Pepito Grillo > Sent: Friday, February 29, 2008 1:15 PM > To: es4...@li... > Subject: [ES40-developers] Idle Loop Installation > > Hi! > > I was trying to install vms product that comes with the > Personal Alpha emulator. > > It gives me this error. > Can someone help me? > > It makes possible for vms to idle out the cpu. so, it frees > some cpu cicles from your real os. > > thanks in advance for your help :) > > Directory DQB1:[000000.V11] > > HP-AXPVMS-IDLE-V0101--1.PCSI;1 > HP-AXPVMS-IDLE-V0101--1.PCSI$COMPRESSED;1 > HP-AXPVMS-IDLE-V0101--1.PCSI$COMPRESSED_ESW;1 > > Total of 3 files. > $ product install * > > Performing product kit validation ... > %PCSI-I-VALPASSED, validation of > DQB1:[000000.V11]HP-AXPVMS-IDLE-V0101--1.PCSI$C > OMPRESSED;1 succeeded > > The following product has been selected: > HP AXPVMS IDLE V1.1 Layered > Product > > Do you want to continue? [YES] > > Configuration phase starting ... > > You will be asked to choose options, if any, for each > selected product and for any products that may be installed > to satisfy software dependency requirements. > > HP AXPVMS IDLE V1.1: Idle cpu powersave driver V1.1 for OpenVMS Alpha. > > Copyright 1976, 2006 Hewlett-Packard Development Company, L.P. > > IDLE was produced by HP OpenVMS Engineering > > * This product does not have any configuration options. > > Execution phase starting ... > > The following product will be installed to > destination: > HP AXPVMS IDLE V1.1 > DISK$ALPHASYS:[VMS$COMMON.] > > Portion done: 0%...10%...20% > %PCSI-I-PRCOUTPUT, output from subprocess follows ... > %FDL-F-READERR, error reading SYS$INPUT:.; -RMS-S-NORMAL, > normal successful completion Portion done: 80% > %PCSI-I-PRCERREXE, error executing: > @pcsi$source:[kit]startup.com > > %PCSI-E-EXEPSTFAIL, product supplied EXECUTE POSTINSTALL > procedure failed -SYSTEM-E-UNSUPPORTED, unsupported operation > or function %PCSI-E-OPFAILED, operation failed Terminating is > strongly recommended. Do you want to terminate? [YES] > > > > > ______________________________________________ > ¿Con Mascota por primera vez? Sé un mejor Amigo. Entra en > Yahoo! Respuestas http://es.answers.yahoo.com/info/welcome > > -------------------------------------------------------------- > ----------- > This SF.net email is sponsored by: Microsoft Defy all > challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Brian W. <bdw...@in...> - 2008-02-29 20:05:06
|
Because it seemed like a funny thing to do (and I'm easily amused), I fixed the system memory allocator so memory bits greater than 30 can be used. Memory Testing and Configuration Status Array Size Base Address Intlv Mode --------- ---------- ---------------- ---------- 0 8192Mb 0000000000000000 4-Way 8192 MB of System Memory AlphaServer ES40 Console V7.2-1, built on Jun 9 2006 at 15:36:48 P00>>> The linux box running it (an 8-cpu Opteron w/36G RAM): top - 14:51:50 up 134 days, 6:56, 7 users, load average: 1.36, 0.90, 0.60 Tasks: 213 total, 3 running, 210 sleeping, 0 stopped, 0 zombie Cpu(s): 12.9%us, 1.6%sy, 0.0%ni, 83.7%id, 1.2%wa, 0.2%hi, 0.5%si, 0.0%st Mem: 37120580k total, 34210544k used, 2910036k free, 76832k buffers Swap: 2031608k total, 156k used, 2031452k free, 28809312k cached PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 28570 bdwheele 25 0 8238m 139m 1840 R 100 0.4 2:55.65 es40 28787 bdwheele 15 0 12716 1144 800 R 2 0.0 0:00.06 top 1675 root 15 0 0 0 0 R 0 0.0 0:52.37 pdflush |
From: Fausto S. <fa...@un...> - 2008-02-29 19:29:26
|
Quoting Brian Wheeler <bdw...@in...>: > > On Fri, 2008-02-29 at 19:47 +0100, Fausto Saporito wrote: >> Hello Brian, >> >> now the 0xf8 is ok, but not 0xab and 0xaf ... > > Those codes are safe to ignore, I think. ok. perfect! > > >> I have to check the docs about a non-graphical installation... I >> suppose it's possible, isn't it? >> > > Yep. Just answer a bunch of questions on the serial port. so I have to remove from my configuration file the graphic card part... I'll try in that way. Fausto > > Brian > > >> regards, >> fausto >> >> Quoting Brian Wheeler <bdw...@in...>: >> >> > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 >> > happy. >> > >> > Oh, if you've got an existing dpr.rom file, you'll probably want to >> > remove it since earlier defaults will show the system temperature is too >> > hot and one of the power supplies have failed... >> > >> > Brian >> > >> > >> > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: >> >> hello all, >> >> >> >> i'm trying to boot Tru64 5.1, but I have a problem during the first >> >> step, it seems the installation is starting, even if I have some KBD >> >> errors, like this: >> >> >> >> kbd: command f8: not recognized! >> >> >> >> but after a while the alpha console becomes black, and nothing >> >> happens. I supposed a blank screen (of graphic display), but I cannot >> >> interact anymore with the console. >> >> >> >> I'm running a windows version of ES40 and I also tried with icache >> >> false or true, with the same result. >> >> >> >> regards, >> >> fausto >> >> >> >> >> >> ------------------------------------------------------------------------- >> >> This SF.net email is sponsored by: Microsoft >> >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> >> _______________________________________________ >> >> Es40-developers mailing list >> >> Es4...@li... >> >> https://lists.sourceforge.net/lists/listinfo/es40-developers >> > >> > >> > ------------------------------------------------------------------------- >> > This SF.net email is sponsored by: Microsoft >> > Defy all challenges. Microsoft(R) Visual Studio 2008. >> > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> > _______________________________________________ >> > Es40-developers mailing list >> > Es4...@li... >> > https://lists.sourceforge.net/lists/listinfo/es40-developers >> > >> >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Es40-developers mailing list >> Es4...@li... >> https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Brian W. <bdw...@in...> - 2008-02-29 19:10:39
|
On Fri, 2008-02-29 at 19:47 +0100, Fausto Saporito wrote: > Hello Brian, > > now the 0xf8 is ok, but not 0xab and 0xaf ... Those codes are safe to ignore, I think. > I have still the error > for those command codes. > My issue is with X server, after a while the alpha console become > black and I cannot continue the installation... > Interesting. I've not tried an install with the card in. > I have to check the docs about a non-graphical installation... I > suppose it's possible, isn't it? > Yep. Just answer a bunch of questions on the serial port. Brian > regards, > fausto > > Quoting Brian Wheeler <bdw...@in...>: > > > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 > > happy. > > > > Oh, if you've got an existing dpr.rom file, you'll probably want to > > remove it since earlier defaults will show the system temperature is too > > hot and one of the power supplies have failed... > > > > Brian > > > > > > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > >> hello all, > >> > >> i'm trying to boot Tru64 5.1, but I have a problem during the first > >> step, it seems the installation is starting, even if I have some KBD > >> errors, like this: > >> > >> kbd: command f8: not recognized! > >> > >> but after a while the alpha console becomes black, and nothing > >> happens. I supposed a blank screen (of graphic display), but I cannot > >> interact anymore with the console. > >> > >> I'm running a windows version of ES40 and I also tried with icache > >> false or true, with the same result. > >> > >> regards, > >> fausto > >> > >> > >> ------------------------------------------------------------------------- > >> This SF.net email is sponsored by: Microsoft > >> Defy all challenges. Microsoft(R) Visual Studio 2008. > >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > >> _______________________________________________ > >> Es40-developers mailing list > >> Es4...@li... > >> https://lists.sourceforge.net/lists/listinfo/es40-developers > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers |
From: Fausto S. <fa...@un...> - 2008-02-29 18:47:22
|
Hello Brian, now the 0xf8 is ok, but not 0xab and 0xaf ... I have still the error for those command codes. My issue is with X server, after a while the alpha console become black and I cannot continue the installation... I have to check the docs about a non-graphical installation... I suppose it's possible, isn't it? regards, fausto Quoting Brian Wheeler <bdw...@in...>: > The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 > happy. > > Oh, if you've got an existing dpr.rom file, you'll probably want to > remove it since earlier defaults will show the system temperature is too > hot and one of the power supplies have failed... > > Brian > > > On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: >> hello all, >> >> i'm trying to boot Tru64 5.1, but I have a problem during the first >> step, it seems the installation is starting, even if I have some KBD >> errors, like this: >> >> kbd: command f8: not recognized! >> >> but after a while the alpha console becomes black, and nothing >> happens. I supposed a blank screen (of graphic display), but I cannot >> interact anymore with the console. >> >> I'm running a windows version of ES40 and I also tried with icache >> false or true, with the same result. >> >> regards, >> fausto >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> Es40-developers mailing list >> Es4...@li... >> https://lists.sourceforge.net/lists/listinfo/es40-developers > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |
From: Pepito G. <pep...@ya...> - 2008-02-29 18:15:03
|
Hi! I was trying to install vms product that comes with the Personal Alpha emulator. It gives me this error. Can someone help me? It makes possible for vms to idle out the cpu. so, it frees some cpu cicles from your real os. thanks in advance for your help :) Directory DQB1:[000000.V11] HP-AXPVMS-IDLE-V0101--1.PCSI;1 HP-AXPVMS-IDLE-V0101--1.PCSI$COMPRESSED;1 HP-AXPVMS-IDLE-V0101--1.PCSI$COMPRESSED_ESW;1 Total of 3 files. $ product install * Performing product kit validation ... %PCSI-I-VALPASSED, validation of DQB1:[000000.V11]HP-AXPVMS-IDLE-V0101--1.PCSI$C OMPRESSED;1 succeeded The following product has been selected: HP AXPVMS IDLE V1.1 Layered Product Do you want to continue? [YES] Configuration phase starting ... You will be asked to choose options, if any, for each selected product and for any products that may be installed to satisfy software dependency requirements. HP AXPVMS IDLE V1.1: Idle cpu powersave driver V1.1 for OpenVMS Alpha. Copyright 1976, 2006 Hewlett-Packard Development Company, L.P. IDLE was produced by HP OpenVMS Engineering * This product does not have any configuration options. Execution phase starting ... The following product will be installed to destination: HP AXPVMS IDLE V1.1 DISK$ALPHASYS:[VMS$COMMON.] Portion done: 0%...10%...20% %PCSI-I-PRCOUTPUT, output from subprocess follows ... %FDL-F-READERR, error reading SYS$INPUT:.; -RMS-S-NORMAL, normal successful completion Portion done: 80% %PCSI-I-PRCERREXE, error executing: @pcsi$source:[kit]startup.com %PCSI-E-EXEPSTFAIL, product supplied EXECUTE POSTINSTALL procedure failed -SYSTEM-E-UNSUPPORTED, unsupported operation or function %PCSI-E-OPFAILED, operation failed Terminating is strongly recommended. Do you want to terminate? [YES] ______________________________________________ ¿Con Mascota por primera vez? Sé un mejor Amigo. Entra en Yahoo! Respuestas http://es.answers.yahoo.com/info/welcome |
From: Brian W. <bdw...@in...> - 2008-02-29 14:28:14
|
The latest Keyboard.cpp in cvs ACKs 0xf8 (and others) which makes Tru64 happy. Oh, if you've got an existing dpr.rom file, you'll probably want to remove it since earlier defaults will show the system temperature is too hot and one of the power supplies have failed... Brian On Fri, 2008-02-29 at 14:40 +0100, Fausto Saporito wrote: > hello all, > > i'm trying to boot Tru64 5.1, but I have a problem during the first > step, it seems the installation is starting, even if I have some KBD > errors, like this: > > kbd: command f8: not recognized! > > but after a while the alpha console becomes black, and nothing > happens. I supposed a blank screen (of graphic display), but I cannot > interact anymore with the console. > > I'm running a windows version of ES40 and I also tried with icache > false or true, with the same result. > > regards, > fausto > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers |
From: Brian W. <bdw...@in...> - 2008-02-29 14:25:08
|
On Fri, 2008-02-29 at 11:36 +0100, Camiel Vanderhoeven wrote: > Hi Brian, > > I've applied your patch in a slightly modified form. Rather than > having the port number a member of the "state" structure, I put it > outside the state struct (that way, you can take your state-file to a > machine that uses a different telnet port); also, rather than creating > an extra "config" variable, I've used the existing myCfg. > I couldn't find the config so I made a new one ;) Yeah, it makes more sense to put the actual port outside of the state. Brian > Camiel. > > On Thu, Feb 28, 2008 at 3:51 PM, Brian Wheeler <bdw...@in...> wrote: > > This one has been bugging me for a while. Occasionally I'll > > accidentally close the console serial session and there was no way to > > reconnect. This adds socket-disconnect logic and pauses the emulator > > while either the serial action is restarted, or until a connection is > > made to the port. > > > > Brian > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2008. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Es40-developers mailing list > > Es4...@li... > > https://lists.sourceforge.net/lists/listinfo/es40-developers > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers |
From: Fausto S. <fa...@un...> - 2008-02-29 13:41:50
|
hello all, i'm trying to boot Tru64 5.1, but I have a problem during the first step, it seems the installation is starting, even if I have some KBD errors, like this: kbd: command f8: not recognized! but after a while the alpha console becomes black, and nothing happens. I supposed a blank screen (of graphic display), but I cannot interact anymore with the console. I'm running a windows version of ES40 and I also tried with icache false or true, with the same result. regards, fausto |
From: Camiel V. <iam...@gm...> - 2008-02-29 10:36:15
|
Hi Brian, I've applied your patch in a slightly modified form. Rather than having the port number a member of the "state" structure, I put it outside the state struct (that way, you can take your state-file to a machine that uses a different telnet port); also, rather than creating an extra "config" variable, I've used the existing myCfg. Camiel. On Thu, Feb 28, 2008 at 3:51 PM, Brian Wheeler <bdw...@in...> wrote: > This one has been bugging me for a while. Occasionally I'll > accidentally close the console serial session and there was no way to > reconnect. This adds socket-disconnect logic and pauses the emulator > while either the serial action is restarted, or until a connection is > made to the port. > > Brian > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > > |
From: Camiel V. <iam...@gm...> - 2008-02-29 10:13:54
|
Hi Brian, Thanks for this patch. I think having the Tru64 driver for the NIC is a great development aid. Camiel. On Wed, Feb 27, 2008 at 9:51 PM, Brian Wheeler <bdw...@in...> wrote: > It looks like the SROM on the NIC has to be properly checksummed before > Tru64 will use it. I found the tru64 device driver kit sample files > online which contained the tulip driver as a sample! I've attached the > files in case there are other problems we have later with the NIC. > > After copying the crc routine and working it into the ResetNIC function, > tru64 likes the device: > > tu0: DECchip 21143: Revision: 3.0 > tu0: auto negotiation capable device > tu0 at pci0 slot 4 > tu0: DEC TULIP (10/100) Ethernet Interface, hardware address: 08-00-2B-E5-40-00 > tu0: no console mode: defaulting to 10BaseT (UTP) port: half duplex > > > For tcp/ip it doesn't seem to connect to the outside world, but I can > run ifconfig and configure it without errors. > > Brian > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > > |
From: Brian W. <bdw...@in...> - 2008-02-28 20:04:12
|
I've been having trouble figuring out why openbsd just halts immediately upon startup. This adds the command "breakpoint instruction <hexval>" which will force the emulation to stop when an instruction matching the hexval has been run. It also extends ctrl-c processing to the other methods of starting execution (ie run xxxxx) and it dumps a little more information when running dumpregs. Brian |
From: Brian W. <bdw...@in...> - 2008-02-28 17:52:03
|
Looks like we've not built IDB for a while. This fixes the calls to ReadMem(). Brian |
From: Brian W. <bdw...@in...> - 2008-02-28 17:07:06
|
All of my debugging keeps scrolling out of the terminal buffer! This turns off read/write messages to legacy video memory. Brian Index: System.cpp =================================================================== RCS file: /cvsroot/es40/es40/src/System.cpp,v retrieving revision 1.64 diff -u -r1.64 System.cpp --- System.cpp 26 Feb 2008 15:43:47 -0000 1.64 +++ System.cpp 28 Feb 2008 16:59:47 -0000 @@ -776,10 +776,12 @@ if (a>=X64(80000000000) && a<X64(80100000000)) { // Unused PCI memory space - if (source) - printf("Write to unknown memory %"LL"x on PCI 0 from %s \n",a & X64(ffffffff),source->devid_string); - else - printf("Write to unknown memory %"LL"x on PCI 0 \n",a & X64(ffffffff)); + u64 paddr = a & X64(ffffffff); + if(paddr > 0xb8fff || paddr < 0xb8000) // skip legacy video + if (source) + printf("Write to unknown memory %"LL"x on PCI 0 from %s \n",a & X64(ffffffff),source->devid_string); + else + printf("Write to unknown memory %"LL"x on PCI 0 \n",a & X64(ffffffff)); return; } @@ -994,10 +996,12 @@ if (a>=X64(80000000000) && a<X64(80100000000)) { // Unused PCI memory space - if (source) - printf("Read from unknown memory %"LL"x on PCI 0 from %s \n",a & X64(ffffffff),source->devid_string); - else - printf("Read from unknown memory %"LL"x on PCI 0 \n",a & X64(ffffffff)); + u64 paddr = a & X64(ffffffff); + if(paddr > 0xb8fff || paddr < 0xb8000) // skip legacy video + if (source) + printf("Read from unknown memory %"LL"x on PCI 0 from %s \n",a & X64(ffffffff),source->devid_string); + else + printf("Read from unknown memory %"LL"x on PCI 0 \n",a & X64(ffffffff)); return 0; } |
From: Brian W. <bdw...@in...> - 2008-02-28 14:51:43
|
This one has been bugging me for a while. Occasionally I'll accidentally close the console serial session and there was no way to reconnect. This adds socket-disconnect logic and pauses the emulator while either the serial action is restarted, or until a connection is made to the port. Brian |