Hi,

[Home] key lock appears when system is "provisioned". It's a matter of
database in Android.

Copy /data/data/com.android.providers.settings/databases/settings.db
to your Linux PC and open it with SQLite3.
$ sqlite3 settings.db
sqlite> select * from "system" where name="device_provisioned";

If the value is 1, then update to 0.
sqlite> update "system" set value="0" where name="device_provisioned";
sqlite> .quit

Copy settings.db back to your target.

# Backup before experiment is always a good thing to do.

## cupcake uses "security" table instead of "system". But if set,
system
## won't boot on my cupcake on Zaurus C3000.

Hope this help a bit.


On  2008年12月11日, 午後3:07, ajay <mekaana...@gmail.com> wrote:
> Hi All
>
>      I ported the Android-mc14 and Android-mc20 onto s3c6400 earlier.
>
>     Currently  I am poritng the Android1.0 on to the same Board with
> the following config:
>             - Kernel : Linux-2.6.25
>             - File systems : Taken from the Android 1.0
>
>     The Board is booted properly and the initial screen is displayed.
>
>     Now my problem is that the initial screen is the screen with
>                      "Andrid  "
>                      "11:25 AM "
>                      " Charging 100 %"
>                      "Screen Locked
>                        (Press Menu to unlock the screen"
>
>        Since the board is booted without any SKIN's , I do not have
> the Menu button to unlock the screen.
>
>     1) Is it possible to boot the board with SKIN's ?
>     2) Is it possible to by-pass this screen-lock screen ?
>
>      3) In the emulator of Android1.0, if we start the emulator with "-
> noskin" option , you will get the same screen. ( i.e without any menu
> button". In that case, how can the user un-locks the screen ?
>
>      Can anyone provide some information regarding this ?
>
> Thank you
> Regards
> Ajay
--~--~---------~--~----~------------~-------~--~----~
unsubscribe: android-porting+unsubscr...@googlegroups.com
website: http://groups.google.com/group/android-porting
-~----------~----~----~----~------~----~------~--~---

Reply via email to