Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Readers > PocketBook

Notices

Reply
 
Thread Tools Search this Thread
Old 01-04-2011, 10:41 AM   #121
hiaig
Addict
hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.
 
Posts: 292
Karma: 428
Join Date: Mar 2010
Location: Toronto, Canada
Device: jetbook and PocketBook IQ
Quote:
Originally Posted by Coredump-EE View Post
Well, I hope if there ever is going to be another firmware, that it's less shoddy than the current one. I mean with working contacts and calendar sync and with a lot of setting options re-enabled. I don't hold my breath...

Case in point, I'm going to try my luck at a custom apps2sd implementation. Right now I'm looking for an OS hook to run my script on boot. I'd really like to avoid using a modded ramdisk.
Yeah ... I would love to have contacts and calendar working.

Regarding apps2sd, when I followed the scripts, I got it working ... but then when you do a reboot, I was stuck at the bootloader screen.

Cheers
hiaig is offline   Reply With Quote
Old 01-04-2011, 10:42 AM   #122
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by hiaig View Post
Yeah ... I would love to have contacts and calendar working.

Regarding apps2sd, when I followed the scripts, I got it working ... but then when you do a reboot, I was stuck at the bootloader screen.

Cheers
Can you give me a link to these scripts?
Coredump-EE is offline   Reply With Quote
Old 01-04-2011, 11:19 AM   #123
hiaig
Addict
hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.
 
Posts: 292
Karma: 428
Join Date: Mar 2010
Location: Toronto, Canada
Device: jetbook and PocketBook IQ
Quote:
Originally Posted by Coredump-EE View Post
Can you give me a link to these scripts?
http://translate.googleusercontent.c...2TdZqBYRx1pSrw

See post 39

This is what I came up with:
Quote:
App2SD:

cd android-sdk-windows\platform-tools

adb shell
su

cat /proc/mtd

mount -o remount,rw -t yaffs2 /dev/block/mtdblock6 /system
mkdir /system/sd

ls /dev/block/mmc*
---- see whether it is mmcblk0p2 or mmcblk1p2

echo “#!/system/bin/sh” > /system/etc/install-recovery.sh

ls /system/etc
------ make sure there is a file: install-recovery.sh

echo “/system/bin/mount -w -t ext2 /dev/block/mmcblk0p2 /system/sd” >> /system/etc/install-recovery.sh

echo “/system/bin/mount -w -t ext2 /dev/block/mmcblk1p2 /system/sd” >> /system/etc/install-recovery.sh

chmod 4755 /system/etc/install-recovery.sh

reboot

adb shell
su
mount
busybox cp -a /data/app /system/sd
rm -r /data/app
ln -s /system/sd/app /data/app
busybox cp -a /data/data /system/sd
rm -r /data/data
ln -s /system/sd/data /data/data
reboot

Last edited by hiaig; 01-04-2011 at 11:57 AM.
hiaig is offline   Reply With Quote
Old 01-04-2011, 12:02 PM   #124
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by hiaig View Post
http://translate.googleusercontent.c...2TdZqBYRx1pSrw

See post 39

This is what I came up with:
/system/etc/install-recovery.sh was precisely what I was looking for, thanks!
Coredump-EE is offline   Reply With Quote
Old 01-04-2011, 03:08 PM   #125
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Thanks to the valuable information by hiaig, I was able to integrate apps2sd into the IQ

Overview:

1. Partition an SD card
2. Setup a2sd

--------------------------------------------------------------------

Step 1: Partition an SD card.

You need to manually partition an SD card with one large partition for
data like ebooks and music, and one smaller partition for applications.
Around 200Mb for apps is usually enough. The data partition must be formatted
with vfat, the application partition must be formatted with ext3.
The order of the partitions shouldn't matter. To be on the safe side, use partition 2 for apps.

--------------------------------------------------------------------

Step 2: Setup a2sd
  • Download a2sd (see below)
  • adb remount
  • adb push a2sd /system/xbin
  • adb shell chmod 755 /system/xbin/a2sd
  • adb shell
  • $ a2sd setup
  • Reboot and enjoy

Hint: Run a2sd without parameter to get a description of all options.

Download a2sd:

iq_a2sd v0.0.2 (latest)
iq_a2sd v0.0.1

As for stability, only time will tell I guess. It appears to be working fine over here.

Last edited by Coredump-EE; 01-08-2011 at 10:53 AM. Reason: Update to a2sd 0.0.2
Coredump-EE is offline   Reply With Quote
Old 01-04-2011, 04:27 PM   #126
hiaig
Addict
hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.
 
Posts: 292
Karma: 428
Join Date: Mar 2010
Location: Toronto, Canada
Device: jetbook and PocketBook IQ
had a problem while running adb shell a2sd setup

Stuck at Use [/dev/block/mmcblk1p2] for a2sd? [Y|n]:

Cannot enter Y or n and press enter.
hiaig is offline   Reply With Quote
Old 01-04-2011, 04:35 PM   #127
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by hiaig View Post
had a problem while running adb shell a2sd setup

Stuck at Use [/dev/block/mmcblk1p2] for a2sd? [Y|n]:

Cannot enter Y or n and press enter.
Interesting.
  • adb shell
  • $ a2sd setup
should work. That's how I did it.
Coredump-EE is offline   Reply With Quote
Old 01-04-2011, 04:42 PM   #128
hiaig
Addict
hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.hiaig has a complete set of Star Wars action figures.
 
Posts: 292
Karma: 428
Join Date: Mar 2010
Location: Toronto, Canada
Device: jetbook and PocketBook IQ
Quote:
Originally Posted by Coredump-EE View Post
Interesting.
  • adb shell
  • $ a2sd setup
should work. That's how I did it.
OK, it works after I "su" it.

Thanks

btw Coredump-EE, what is that widget that you have showing disc usage?

Last edited by hiaig; 01-04-2011 at 04:48 PM.
hiaig is offline   Reply With Quote
Old 01-04-2011, 04:53 PM   #129
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by hiaig View Post
OK, it works after I "su" it.

Thanks

btw Coredump-EE, what is that widget that you have showing disc usage?
Glad to hear it.

The widget is called Elixir.
Coredump-EE is offline   Reply With Quote
Old 01-04-2011, 06:32 PM   #130
Icewyng
Addict
Icewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura about
 
Icewyng's Avatar
 
Posts: 238
Karma: 4039
Join Date: Jun 2010
Location: Quebec, Canada
Device: Pocketbook 301+, Pocketbook IQ
Quote:
Originally Posted by Coredump-EE View Post
Glad to hear it.

The widget is called Elixir.
How do you find Elixir? I was thinking of installing it but wasn't sure if it would slow down the IQ or not.

For people looking for a small launcher, I have been using Zeam launcher these days and even though it is minimalistic, it is very practical.

@Coredump: You look familiar with Android... Been using it for a while?

Last edited by Icewyng; 01-04-2011 at 07:03 PM.
Icewyng is offline   Reply With Quote
Old 01-05-2011, 01:45 AM   #131
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by Icewyng View Post
How do you find Elixir? I was thinking of installing it but wasn't sure if it would slow down the IQ or not.
Can't say that I've noted any slowdown, really. But it sure does look beautiful

Quote:
For people looking for a small launcher, I have been using Zeam launcher these days and even though it is minimalistic, it is very practical.
I will have a look. Can't say that I'm not completely happy with LauncherPro for the moment tho.

Quote:
@Coredump: You look familiar with Android... Been using it for a while?
I've been using my (ancient, I know...) Google G1 for quite some time now. It's rooted, has custom bootscreen, bootloader, firmware, etc. You do pick up quite a few things over time =)

Before Android, I was very active in the Sharp Zaurus scene. It was a really sweet line of PDAs. Very hackable. I even had my own distribution for some models People were actually using it as well!

One of my biggest Zaurus projects, apart from the distribution thing, was called "altboot". It was an init replacement allowing, boot from SD, boot from CF, from from loop-images inside the media, etc. So adding a2sd here wasn't too much of a challenge.
Coredump-EE is offline   Reply With Quote
Old 01-05-2011, 02:29 AM   #132
Icewyng
Addict
Icewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura aboutIcewyng has a spectacular aura about
 
Icewyng's Avatar
 
Posts: 238
Karma: 4039
Join Date: Jun 2010
Location: Quebec, Canada
Device: Pocketbook 301+, Pocketbook IQ
Quote:
Originally Posted by Coredump-EE View Post
Before Android, I was very active in the Sharp Zaurus scene. It was a really sweet line of PDAs. Very hackable. I even had my own distribution for some models People were actually using it as well!

One of my biggest Zaurus projects, apart from the distribution thing, was called "altboot". It was an init replacement allowing, boot from SD, boot from CF, from from loop-images inside the media, etc. So adding a2sd here wasn't too much of a challenge.
Ah...that is why you seemed so comfortable playing around Android. I've never heard of the Zaurus but I'll make sure to take a look at it (I have a soft spot for old electronic devices).

Are there good resources that you know of that could explain how Android works and how to modify it? I have learned a lot so far but feel that I am lacking knowledge to go any further.

I think the IQ would benefit from a custom ROM such as Cyanogen since we can pretty much forget about Honeycomb. as it seems that it will require a dual-core processor such as Tegra and a 1280*720 screen according to Engadget...
Icewyng is offline   Reply With Quote
Old 01-05-2011, 05:07 AM   #133
Coredump-EE
Connoisseur
Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.Coredump-EE once ate a cherry pie in a record 7 seconds.
 
Coredump-EE's Avatar
 
Posts: 79
Karma: 1814
Join Date: Dec 2010
Device: Pocketbook IQ
Quote:
Originally Posted by Icewyng View Post
Ah...that is why you seemed so comfortable playing around Android. I've never heard of the Zaurus but I'll make sure to take a look at it (I have a soft spot for old electronic devices).

Are there good resources that you know of that could explain how Android works and how to modify it? I have learned a lot so far but feel that I am lacking knowledge to go any further.
Step one would be to set up a complete development environment and build Android from scratch for various devices. From this alone you'd learn a lot. Then you need to get comfortable enough with the environment that you can set up a build target for your desired device (ie: the IQ). The vendor will hardly help you with that

The second you have build the first generic working Android for the IQ, custom firmwares become trivia l

Quote:
I think the IQ would benefit from a custom ROM such as Cyanogen since we can pretty much forget about Honeycomb. as it seems that it will require a dual-core processor such as Tegra and a 1280*720 screen according to Engadget...
Indeed it would. But as you said, the hardware of the IQ is pretty low-spec. Even custom firmwares will give you only so much. Maybe Pocketboot will release a good base distribution for the IQ with the next update, that can be extended upon. One can dream, right?
Coredump-EE is offline   Reply With Quote
Old 01-05-2011, 05:32 AM   #134
aceflor
Wizard
aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.
 
aceflor's Avatar
 
Posts: 3,470
Karma: 48036360
Join Date: Aug 2009
Location: where the sun lives, or so they say
Device: Pocketbook Era, Pocketbook Inkpad 4, Kobo Libra 2, Kindle Scribe
Quote:
Originally Posted by Icewyng View Post

I think the IQ would benefit from a custom ROM such as Cyanogen ...
Honey in my ears !
aceflor is offline   Reply With Quote
Old 01-05-2011, 05:34 AM   #135
aceflor
Wizard
aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.
 
aceflor's Avatar
 
Posts: 3,470
Karma: 48036360
Join Date: Aug 2009
Location: where the sun lives, or so they say
Device: Pocketbook Era, Pocketbook Inkpad 4, Kobo Libra 2, Kindle Scribe
Quote:
Originally Posted by Coredump-EE View Post
Step one would be to set up a complete development environment and build Android from scratch for various devices. From this alone you'd learn a lot. Then you need to get comfortable enough with the environment that you can set up a build target for your desired device (ie: the IQ). The vendor will hardly help you with that

The second you have build the first generic working Android for the IQ, custom firmwares become trivia l



Indeed it would. But as you said, the hardware of the IQ is pretty low-spec. Even custom firmwares will give you only so much. Maybe Pocketboot will release a good base distribution for the IQ with the next update, that can be extended upon. One can dream, right?
I think they would love to, but I am not sure they (their programmers) are THAT good with Android. No offence intended.
aceflor is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
NC: Market supposedely working Mastiff Nook Developer's Corner 8 01-15-2011 07:34 AM
is there still a market for 505? lustyd Sony Reader 5 12-19-2010 04:21 PM
Flea market elrado Feedback 4 05-23-2010 09:08 AM
3 new e-readers for Dutch market geertm News 3 10-08-2009 02:28 AM
In the market..... TXHorns Introduce Yourself 3 09-02-2009 09:59 PM


All times are GMT -4. The time now is 03:33 PM.


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