myMPX
Advertisement


Go Back MyMPx.org > MyMPx.org Forum > Mods and Themes

Can someone transkate russian instruction?
Reply
Post New Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old 26th Mar 2008, 12:27 am
Member
Keen on MPx players
 
Join Date: Feb 2008
Posts: 50
Default Can someone transkate russian instruction?


I have now found out that it is possible to modify and upload the firmware of an s1-player without paying for the fullversion of S1res. It is of course legal. What you need is the demo version of S1res, Winhex (or another hex editor) and S1fwx.

However the instructions Ive got are in russian. Can someone translate them?

The instructions can be found here:
Russian instructions for firmware modification
Reply With Quote
  #2 (permalink)  
Old 26th Mar 2008, 12:30 am
Member
Keen on MPx players
 
Join Date: Feb 2008
Posts: 50
Default

Please post the translation here or mail it to klaus.dietmann@gmail.com. Thanks!
Reply With Quote
  #3 (permalink)  
Old 26th Mar 2008, 3:31 am
Junior Member
 
Join Date: Mar 2008
Posts: 28
Default Re: Can someone transkate russian instruction?

It's a bit hard to make sense of some of the things because it lacks punctuation... Anyway, here's my try at it

1.Get http://s1mp3.de/ s1res_v30_win32_setup.exe
2.Run "import firmware", when the firmware gets calculated you should get a window with resources. Don't close s1res.
3.Get WinHex
4.Run tools ->open ram->s1res primary memory. With CTRL+A select all files, save as "Primary Memory".
5.In WinHex open Primary Memory CTRL+F two lines above SDK there should be a 55. Start seperating AA from 55 (including 55) to the end and save that as FWIMAGE.FW
6.Get s1fwx.exe from http://s1mp3.de/
7.Make a catalog, for example make_fw
in it create catalogs bin and fw and inside the bin put the FWIMAGE.FW we got, and execute

s1fwx s FWIMAGE.FW >script.afi
s1fwx x FWIMAGE.FW >list.!!!

In the catalog bin you should have the extracted FWIMAGE.FW and the assembling script - script.afi.
8.Further in the make_fw catalog make a BAT - name it make.bat and put this in it:

cd .\bin
s1fwx a FWIMAGE.FW:fw <script>list.!!!
cd ..
copy .\bin\FWIMAGE.FW .\fw\FWIMAGE.FW
cd .\fw
s1fwx a FWIMAGE.bin:afi <script>list.!!!
cd ..
copy .\fw\FWIMAGE.bin .
del .\fw\FWIMAGE.bin

the BAT will collect the firmware in a pile (im guessing compile)
9.In FW's catalog, place the files needed to complete the whole firmware. You can take parts from other firmwares using EXTRACT.BAT with this in it and put it in the catalog make_fw:

md bin
md fw
copy %1 .\fw\%1
cd .\fw
s1fwx s %1 >script.afi
s1fwx x %1 >list.!!!
del %1
copy FWIMAGE.FW ..\bin\FWIMAGE.FW
cd ..
cd .\bin
s1fwx s FWIMAGE.FW >script.afi
s1fwx x FWIMAGE.FW >list.!!!
del FWIMAGE.FW
cd ..

10. A little trick - s1fwx.exe doesn't make the header properly for completely new firmwares. Therefore, after assembling the firmware you have to replace the header with the one that was in the FWIMAGE.FW we got. It's the first 512 bytes of the file, in the finished firmware it begins at the offset 0x37400.
Reply With Quote
  #4 (permalink)  
Old 26th Mar 2008, 3:33 am
Junior Member
 
Join Date: Mar 2008
Posts: 28
Default Re: Can someone transkate russian instruction?

8.Further in the make_fw catalog make a BAT - name it make.bat and put this in it:

cd .\bin
s1fwx a FWIMAGE.FW:fw <script>list.!!!
cd ..
copy .\bin\FWIMAGE.FW .\fw\FWIMAGE.FW
cd .\fw
s1fwx a FWIMAGE.bin:afi <script>list.!!!
cd ..
copy .\fw\FWIMAGE.bin .
del .\fw\FWIMAGE.bin

the BAT will collect the firmware in a pile (im guessing compile)
9.In FW's catalog, place the files needed to complete the whole firmware. You can take parts from other firmwares using EXTRACT.BAT with this in it and put it in the catalog make_fw:

md bin
md fw
copy %1 .\fw\%1
cd .\fw
s1fwx s %1 >script.afi
s1fwx x %1 >list.!!!
del %1
copy FWIMAGE.FW ..\bin\FWIMAGE.FW
cd ..
cd .\bin
s1fwx s FWIMAGE.FW >script.afi
s1fwx x FWIMAGE.FW >list.!!!
del FWIMAGE.FW
cd ..

10. A little trick - s1fwx.exe doesn't make the header properly for completely new firmwares. Therefore, after assembling the firmware you have to replace the header with the one that was in the FWIMAGE.FW we got. It's the first 512 bytes of the file, in the finished firmware it begins at the offset 0x37400.
Reply With Quote
  #5 (permalink)  
Old 26th Mar 2008, 3:34 am
Junior Member
 
Join Date: Mar 2008
Posts: 28
Default Re: Can someone transkate russian instruction?

8.Further in the make_fw catalog make a BAT - name it make.bat and put this in it:

cd .\bin
s1fwx a FWIMAGE.FW:fw <script>list.!!!
cd ..
copy .\bin\FWIMAGE.FW .\fw\FWIMAGE.FW
cd .\fw
s1fwx a FWIMAGE.bin:afi <script>list.!!!
cd ..
copy .\fw\FWIMAGE.bin .
del .\fw\FWIMAGE.bin

the BAT will collect the firmware in a pile (im guessing compile)
9.In FW's catalog, place the files needed to complete the whole firmware. You can take parts from other firmwares using EXTRACT.BAT with this in it and put it in the catalog make_fw:

md bin
md fw
copy %1 .\fw\%1
cd .\fw
s1fwx s %1 >script.afi
s1fwx x %1 >list.!!!
del %1
copy FWIMAGE.FW ..\bin\FWIMAGE.FW
cd ..
cd .\bin
s1fwx s FWIMAGE.FW >script.afi
s1fwx x FWIMAGE.FW >list.!!!
del FWIMAGE.FW
cd ..

10. A little trick - s1fwx.exe doesn't make the header properly for completely new firmwares. Therefore, after assembling the firmware you have to replace the header with the one that was in the FWIMAGE.FW we got. It's the first 512 bytes of the file, in the finished firmware it begins at the offset 0x37400.
Reply With Quote
  #6 (permalink)  
Old 26th Mar 2008, 3:43 am
Junior Member
 
Join Date: Mar 2008
Posts: 28
Default Re: Can someone transkate russian instruction?

8.Further in the make_fw catalog make a BAT - name it make.bat and put this in it:

cd .\bin
s1fwx a FWIMAGE.FW:fw <script>list.!!!
cd ..
copy .\bin\FWIMAGE.FW .\fw\FWIMAGE.FW
cd .\fw
s1fwx a FWIMAGE.bin:afi <script>list.!!!
cd ..
copy .\fw\FWIMAGE.bin .
del .\fw\FWIMAGE.bin

the BAT will collect the firmware in a pile (im guessing compile)
9.In FW's catalog, place the files needed to complete the whole firmware. You can take parts from other firmwares using EXTRACT.BAT with this in it and put it in the catalog make_fw:

md bin
md fw
copy %1 .\fw\%1
cd .\fw
s1fwx s %1 >script.afi
s1fwx x %1 >list.!!!
del %1
copy FWIMAGE.FW ..\bin\FWIMAGE.FW
cd ..
cd .\bin
s1fwx s FWIMAGE.FW >script.afi
s1fwx x FWIMAGE.FW >list.!!!
del FWIMAGE.FW
cd ..

10. A little trick - s1fwx.exe doesn't make the header properly for completely new firmwares. Therefore, after assembling the firmware you have to replace the header with the one that was in the FWIMAGE.FW we got. It's the first 512 bytes of the file, in the finished firmware it begins at the offset 0x37400.
Reply With Quote
  #7 (permalink)  
Old 30th Mar 2008, 7:52 pm
Member
I love my MPx player
 
Join Date: Jan 2008
Posts: 98
Default

5.In WinHex open Primary Memory CTRL+F two lines above SDK there should be a 55. Start seperating AA from 55 (including 55) to the end and save that as FWIMAGE.FW

i dont get this one, can upload pics of it??
Reply With Quote
Sponsored Links
  #8 (permalink)  
Old 31st Mar 2008, 2:38 am
Member
I love my MPx player
 
Join Date: Jan 2008
Posts: 98
Default Re: Can someone transkate russian instruction?

i can't understand 5th to the last instruction, can you give me pics?? pls
Reply With Quote
  #9 (permalink)  
Old 31st Mar 2008, 11:58 am
Junior Member
 
Join Date: Mar 2008
Posts: 28
Default Re: Can someone transkate russian instruction?

Sorry, the board doesnt display my or your messages... and i just translated from a text file.
Reply With Quote
  #10 (permalink)  
Old 31st Mar 2008, 5:18 pm
Member
I love my MPx player
 
Join Date: Jan 2008
Posts: 98
Default

i hope someone would edit the english instruction so that we can understand a bit more, tnx Pesho for translating this one!
Reply With Quote
Reply

Sponsored Links



Similar Threads
Thread Thread Starter Forum Replies Last Post
FPod FirmWare 1.0 for DaZed, Yepo etc. 2.0 (RUSSIAN) ZheNek Mods and Themes 8 17th Aug 2008 3:05 am
Any firmware updates and instruction on how to work LG MP3? ES_keyblade Support and How To 2 22nd Mar 2008 8:33 pm
instruction video NoInOi Video related 1 14th Jan 2007 7:05 am
[offtopic] Russian language programms Kivin Dead Players 2 29th Nov 2006 6:18 am
Instruction Manual Applemac Support and How To 2 22nd Jul 2006 4:15 am


All times are GMT -7. The time now is 8:00 pm.


Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2015, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.6.0 RC 2
Back to Top

Designed by indiqo.media