Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Sony Reader > Sony Reader Dev Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 07-27-2008, 08:54 AM   #46
JeffElkins
Guru
JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.
 
JeffElkins's Avatar
 
Posts: 780
Karma: 1416
Join Date: Jan 2008
Device: Kobo Clara 2E/HD, Kindle PW
Quote:
Originally Posted by jakewastaken View Post
Any luck on the "enter" button quick shutdown? I really miss that. It's not already here is it? It's not working for me.
In applicationStart.xml I changed:

Code:
<boolean key="0x27-hold" do="doCenter"/>
to:

Code:
<boolean key="0x27-hold" do="doQuit"/>
to enable that function.
JeffElkins is offline   Reply With Quote
Old 07-27-2008, 09:00 AM   #47
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,752
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by JeffElkins View Post
In applicationStart.xml I changed:

Code:
<boolean key="0x27-hold" do="doCenter"/>
to:

Code:
<boolean key="0x27-hold" do="doQuit"/>
to enable that function.
Actually, the correct way to do it is

Code:
<boolean key="0x27-hold" do="doDeviceShutdown"/>
because then you get the 505 displaying that it is shutting down.
JSWolf is offline   Reply With Quote
Advert
Old 07-27-2008, 09:05 AM   #48
JeffElkins
Guru
JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.
 
JeffElkins's Avatar
 
Posts: 780
Karma: 1416
Join Date: Jan 2008
Device: Kobo Clara 2E/HD, Kindle PW
Quote:
Originally Posted by JSWolf View Post
Actually, the correct way to do it is

Code:
<boolean key="0x27-hold" do="doDeviceShutdown"/>
because then you get the 505 displaying that it is shutting down.
Thanks!
JeffElkins is offline   Reply With Quote
Old 07-27-2008, 09:14 AM   #49
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,752
Karma: 145864619
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
When I first installed the change as you origially posted it, I noticed that it did not display that it was shutting down like it did when I went via the menus. So I have a look to try to find out what routine was called when I used the menus to shut down. Then I found it and no I know the proper thing to have the 505 do when shutting down via the hack.
JSWolf is offline   Reply With Quote
Old 07-27-2008, 10:32 AM   #50
arcadesdude
Lexically Impaired
arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.arcadesdude ought to be getting tired of karma fortunes by now.
 
arcadesdude's Avatar
 
Posts: 28
Karma: 200518
Join Date: May 2008
Device: PW2
Quote:
Originally Posted by leonardfrye View Post
I removed all of the books from my 505 and then tried the flasher again ... worked like a champ. I got the clock back. However, in am/pm mode the left character of the clock is chopped in half. I played with the xml file and could not fix it. So I modified the xml to where it does not append "am" or "pm" to the string. Oh well ... at least it works!
I'm also having this issue and tried modifiying the C:\Documents and Settings\User\Desktop\Universal_Flasher_2.0\Univer sal Flasher 2.0\files.505.1.1.00.18040\opt\sony\ebook\applicat ion\resources\scripts\main.xml file.

My work around was similar to yours. I deleted the 'm' from 'am' and 'pm' and deleted the following two lines:

if (hours < 10) hours = "0" + hours; line 772
if (hours < 10) hours = "0" + hours; line 850

just change both occurances of
var m = "am";
m = "pm";

to

var m = "a";
m = "p";

works like that.

I think the character was cut off because the non-showing illegal operation image (the circle with the line through it) appears to be drawn after the clock is drawn and that symbol may have been moved to the right a little in the new firmware update.

Well I can actually read PDF now (reflow is nice), and have the clock...just need the nice grayscale icons and I'll be happy!

Last edited by arcadesdude; 07-27-2008 at 10:49 AM.
arcadesdude is offline   Reply With Quote
Advert
Old 07-27-2008, 12:42 PM   #51
InStim
Member
InStim began at the beginning.
 
InStim's Avatar
 
Posts: 16
Karma: 10
Join Date: Jan 2008
Location: Rochester, NY, USA
Device: Boox Palma 2, Kobo Libra 2, Kindle Voyage, Sony PRS-505
Quote:
Originally Posted by arcadesdude View Post
My work around was similar to yours. I deleted the 'm' from 'am' and 'pm' and deleted the following two lines ...
I was seeing this issue also after running the flash the first time to get the clock, unified title size, and JeffElkins neat About text hack. Unfortunately I am not able to get these clock changes to take effect when I flash again. I edited the XML, copied it over to the card, rebuilt the image, and applied it. Still seeing am/pm and the cropping. I have confirmed the edits in the XML, deleted everything off the memory stick and copied it over again to repeat the process.

Do I need to reapply the upgrade to my reader then flash it again? If so, how do I reapply the upgrade?

Thanks for the help!

EDIT:
Ah well, so much for verifying the edits! I had missed one instance of "am" so in the menus I was still seeing it. When it went to "pm" I was amazed it was 'working' now with "p".

Last edited by InStim; 07-27-2008 at 01:53 PM. Reason: Update
InStim is offline   Reply With Quote
Old 07-27-2008, 02:42 PM   #52
JeffElkins
Guru
JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.
 
JeffElkins's Avatar
 
Posts: 780
Karma: 1416
Join Date: Jan 2008
Device: Kobo Clara 2E/HD, Kindle PW
I'm trying the process of creating a new image. I've copied the /opt within the image to my drive and used mkcramfs to build my new_opt.img. However, when I attempt to flash the image (option 4, option 6) I get the message: /tmp/self_upgrade/new_opt.img not found. I also tried flashing the image built with option 5, with the same result. The image file is in the root of the sd card.

Edit: I think my problem is with the image file I created.

6258688: new_opt.img (original, created by make_opt.sh)
6254592: new_opt.img (created by mkcramfs, linux, ubuntu 8.04)

Note the filesize difference. I didn't pass any extra parameters to mkcramfs, just: mkcramfs new_opt/ new_opt.img.

Last edited by JeffElkins; 07-27-2008 at 04:43 PM. Reason: clairification
JeffElkins is offline   Reply With Quote
Old 07-27-2008, 03:43 PM   #53
dordale
Wizard
dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.
 
dordale's Avatar
 
Posts: 1,731
Karma: 3472866
Join Date: Apr 2008
Device: Sony PRS-650 & 350; Kindle Voyage; Kobo Aura HD, Aura One, and Forma
Quote:
Originally Posted by dordale View Post
I haven't been successful, so far. When I put the SD card with the files from the zip in my reader and push the 5 button, I get the following message on my reader:

"Sorry, this firmware version is not supported: 505.1.1.00.18040".

Am I missing a step or doing something wrong?

Thanks for any help!!

dordale
Quote:
Originally Posted by igorsk View Post
Do you have a directory named files.505.1.1.00.18040 in the root of the card?
Thanks Igorsk--

No, I didn't. When I originally unzipped the flasher to my card, it put everything in a directory named "Universal Flasher 2.0" So now, I tried again, putting all files and directories to the root of my SD card. Now when I try to run the flasher I get the following error: "Exception "invalid type".

Thanks for any pointers as to what I'm doing wrong.

dordale
dordale is offline   Reply With Quote
Old 07-27-2008, 04:01 PM   #54
jakewastaken
Media Whore.
jakewastaken has a complete set of Star Wars action figures.jakewastaken has a complete set of Star Wars action figures.jakewastaken has a complete set of Star Wars action figures.
 
jakewastaken's Avatar
 
Posts: 118
Karma: 265
Join Date: Jun 2008
Location: IL
Device: PRS-505
Quote:
Originally Posted by JSWolf View Post
Actually, the correct way to do it is

Code:
<boolean key="0x27-hold" do="doDeviceShutdown"/>
because then you get the 505 displaying that it is shutting down.
You guys are awesome! Thank you.
jakewastaken is offline   Reply With Quote
Old 07-27-2008, 06:22 PM   #55
igorsk
Wizard
igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.
 
Posts: 3,442
Karma: 300001
Join Date: Sep 2006
Location: Belgium
Device: PRS-500/505/700, Kindle, Cybook Gen3, Words Gear
Quote:
Originally Posted by JeffElkins View Post
I'm trying the process of creating a new image. I've copied the /opt within the image to my drive and used mkcramfs to build my new_opt.img. However, when I attempt to flash the image (option 4, option 6) I get the message: /tmp/self_upgrade/new_opt.img not found.
Edit the target.doDigit4 function in autorun.js.
Change:
Code:
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/new_opt.img"))
to
Code:
this.runCommand("mkdir /tmp/self_upgrade");
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/self_upgrade/new_opt.img"))
igorsk is offline   Reply With Quote
Old 07-27-2008, 06:55 PM   #56
igorsk
Wizard
igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.igorsk ought to be getting tired of karma fortunes by now.
 
Posts: 3,442
Karma: 300001
Join Date: Sep 2006
Location: Belgium
Device: PRS-500/505/700, Kindle, Cybook Gen3, Words Gear
Quote:
Originally Posted by dordale View Post
When I originally unzipped the flasher to my card, it put everything in a directory named "Universal Flasher 2.0" So now, I tried again, putting all files and directories to the root of my SD card. Now when I try to run the flasher I get the following error: "Exception "invalid type".
That IS weird, it shouldn't be doing that... I can't offer much except "try again" solution, sorry
Here's the list of files and folders that should be on the card:
Code:
bin
files.500.1.0.03.07170
files.505.1.0.00.08130
files.505.1.1.00.18040
flash_opt.sh
libfskLoad.so
make_opt.sh
mcopy
mtools.conf.500
mtools.conf.505
myvm2.xml
readme.txt
script.sh
Sony Reader
bin\stat_fs
files.500.1.0.03.07170\opt
files.500.1.0.03.07170\opt\sony
files.500.1.0.03.07170\opt\sony\ebook
files.500.1.0.03.07170\opt\sony\ebook\application
files.500.1.0.03.07170\opt\sony\ebook\bin
files.500.1.0.03.07170\opt\sony\ebook\FONT
files.500.1.0.03.07170\opt\sony\ebook\application\resources
files.500.1.0.03.07170\opt\sony\ebook\application\resources\applicationStart.xml
files.500.1.0.03.07170\opt\sony\ebook\application\resources\scripts
files.500.1.0.03.07170\opt\sony\ebook\application\resources\scripts\main.xml
files.505.1.0.00.08130\opt
files.505.1.0.00.08130\opt\sony
files.505.1.0.00.08130\opt\sony\ebook
files.505.1.0.00.08130\opt\sony\ebook\application
files.505.1.0.00.08130\opt\sony\ebook\bin
files.505.1.0.00.08130\opt\sony\ebook\FONT
files.505.1.0.00.08130\opt\sony\ebook\application\resources
files.505.1.0.00.08130\opt\sony\ebook\application\resources\applicationStart.xml
files.505.1.0.00.08130\opt\sony\ebook\application\resources\scripts
files.505.1.0.00.08130\opt\sony\ebook\application\resources\scripts\main.xml
files.505.1.1.00.18040\opt
files.505.1.1.00.18040\opt\sony
files.505.1.1.00.18040\opt\sony\ebook
files.505.1.1.00.18040\opt\sony\ebook\application
files.505.1.1.00.18040\opt\sony\ebook\bin
files.505.1.1.00.18040\opt\sony\ebook\FONT
files.505.1.1.00.18040\opt\sony\ebook\application\resources
files.505.1.1.00.18040\opt\sony\ebook\application\resources\applicationStart.xml
files.505.1.1.00.18040\opt\sony\ebook\application\resources\scripts
files.505.1.1.00.18040\opt\sony\ebook\application\resources\scripts\main.xml
Sony Reader\database
Sony Reader\software
Sony Reader\database\cache.xml
Sony Reader\software\autorun.js
Sony Reader\software\autorun.xml
igorsk is offline   Reply With Quote
Old 07-27-2008, 06:59 PM   #57
JeffElkins
Guru
JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.JeffElkins is no ebook tyro.
 
JeffElkins's Avatar
 
Posts: 780
Karma: 1416
Join Date: Jan 2008
Device: Kobo Clara 2E/HD, Kindle PW
Quote:
Originally Posted by igorsk View Post
Edit the target.doDigit4 function in autorun.js.
Change:
Code:
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/new_opt.img"))
to
Code:
this.runCommand("mkdir /tmp/self_upgrade");
if (!this.copyFile(this.driveroot+"/new_opt.img","/tmp/self_upgrade/new_opt.img"))
Thanks, that fixed it for me.
JeffElkins is offline   Reply With Quote
Old 07-27-2008, 10:25 PM   #58
dordale
Wizard
dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.dordale ought to be getting tired of karma fortunes by now.
 
dordale's Avatar
 
Posts: 1,731
Karma: 3472866
Join Date: Apr 2008
Device: Sony PRS-650 & 350; Kindle Voyage; Kobo Aura HD, Aura One, and Forma
Quote:
Originally Posted by igorsk View Post
That IS weird, it shouldn't be doing that... I can't offer much except "try again" solution, sorry

Thanks Igorsk--Appreciate your help. I will keep trying. I might be having problems with my card reader/writer. I'm sure I'll get it to work sooner or later!

dordale
dordale is offline   Reply With Quote
Old 07-28-2008, 10:47 AM   #59
SurgE
Serial Bricker
SurgE doesn't litterSurgE doesn't litter
 
Posts: 65
Karma: 104
Join Date: Feb 2008
Location: Singapore
Device: Sony PRS-505, Kindle 3 KSO
Just wondering, where can I change the "Reader" title as specified in the image below?
Attached Thumbnails
Click image for larger version

Name:	reader.jpg
Views:	872
Size:	43.7 KB
ID:	14712  
SurgE is offline   Reply With Quote
Old 07-28-2008, 10:55 AM   #60
porkupan
Fanatic
porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.porkupan ought to be getting tired of karma fortunes by now.
 
porkupan's Avatar
 
Posts: 556
Karma: 1057213
Join Date: Sep 2006
Location: North Eastern U.S.
Device: Sony Reader
Quote:
Originally Posted by SurgE View Post
Just wondering, where can I change the "Reader" title as specified in the image below?
kBookAssets.png
porkupan is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PRS-500 Problem with universal flasher gczobel Sony Reader Dev Corner 1 08-21-2010 08:48 AM
PRS-500 Sony Reader PRS-500 universal flasher igorsk Sony Reader Dev Corner 227 05-23-2010 09:15 PM
prs-500 stuck at "starting up" after universal flasher consilient Sony Reader 9 05-19-2010 03:49 AM
Universal Flasher: .so file question billyfred Sony Reader Dev Corner 4 06-27-2009 12:05 AM
Need help please - how to use the universal flasher de_Genova Sony Reader 6 05-02-2009 12:01 PM


All times are GMT -4. The time now is 12:07 PM.


MobileRead.com is a privately owned, operated and funded community.