Re: [ES40-developers] DPR patch
Status: Alpha
Brought to you by:
iamcamiel
From: Camiel V. <iam...@gm...> - 2008-04-09 13:27:57
|
Thanks Brian, I just applied it. On Wed, Apr 9, 2008 at 2:45 PM, Brian Wheeler <bdw...@in...> wrote: > Just a little patch which makes the RMC versions come out right: > > Firmware > SRM Console: V7.2-1 > ARC Console: > PALcode: OpenVMS PALcode V1.98-104, Tru64 UNIX PALcode V1.92-105 > Serial ROM: V2.22G > RMC ROM: V1.0 > RMC Flash ROM: V1.0 > > > > Index: DPR.cpp > =================================================================== > RCS file: /cvsroot/es40/es40/src/DPR.cpp,v > retrieving revision 1.21 > diff -u -r1.21 DPR.cpp > --- DPR.cpp 17 Mar 2008 20:20:39 -0000 1.21 > +++ DPR.cpp 9 Apr 2008 12:44:23 -0000 > @@ -340,14 +340,14 @@ > // 3009:300B RMC Rev Level of RMC first byte is letter Rev [x/t/v] second 2 bytes are major/minor. > // This is the rev level of the RMC on-chip code. > state.ram[0x3009] = 'V'; > - state.ram[0x300a] = 0x01; > - state.ram[0x300b] = 0x00; > + state.ram[0x300a] = 0x31; > + state.ram[0x300b] = 0x30; > > // 300C:300E RMC Rev Level of RMC first byte is letter Rev [x/t/v] second 2 bytes are major/minor. > // This is the rev level of the RMC flash code. > state.ram[0x300c] = 'V'; > - state.ram[0x300d] = 0x01; > - state.ram[0x300e] = 0x00; > + state.ram[0x300d] = 0x31; > + state.ram[0x300e] = 0x30; > > // 300F:3010 300F RMC Revision Field of the DPR Structure > // 3400 SROM Size of Bcache in MB > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by the 2008 JavaOne(SM) Conference > Don't miss this year's exciting event. There's still time to save $100. > Use priority code J8TL2D2. > http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone > _______________________________________________ > Es40-developers mailing list > Es4...@li... > https://lists.sourceforge.net/lists/listinfo/es40-developers > |