[android-developers] Android factory test mode

2010-09-02 Thread twebb
Regarding the factory test mode discussed below, once the factory testing is complete how can the ro.factorytest property be changed/ removed such that the device boots into normal operation? Thanks, twebb The is no mode for apps.  This is for running the system in special modes with security

Re: [android-developers] Android factory test mode

2010-09-02 Thread Dianne Hackborn
This is not related to the Android SDK; please move this to an appropriate group. On Thu, Sep 2, 2010 at 11:20 AM, twebb taliaferr...@gmail.com wrote: Regarding the factory test mode discussed below, once the factory testing is complete how can the ro.factorytest property be changed/ removed

Re: [android-kernel] Re: [android-developers] Android factory test mode

2010-03-23 Thread Porting beginner
On Mon, Mar 22, 2010 at 9:41 PM, Dianne Hackborn hack...@android.comwrote: On Mon, Mar 22, 2010 at 9:07 PM, Shuduo Sang sangshu...@gmail.com wrote: Is it also named fast boot mode? No that is unrelated. Thanks for more detail on factory mode. fastboot is special mode of device for

Re: [android-kernel] Re: [android-developers] Android factory test mode

2010-03-23 Thread Dianne Hackborn
Yes fastboot is the Android tool for flashing images (and doing other things). On Mon, Mar 22, 2010 at 11:00 PM, Porting beginner porting.begin...@gmail.com wrote: On Mon, Mar 22, 2010 at 9:41 PM, Dianne Hackborn hack...@android.comwrote: On Mon, Mar 22, 2010 at 9:07 PM, Shuduo Sang

[android-developers] Android factory test mode

2010-03-22 Thread Porting beginner
Hi, I have android running on arm11 based target platform with eclair release. How to boot android in factory test mode ? Where I can get more information on this ? -- Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] Android factory test mode

2010-03-22 Thread Dianne Hackborn
It is controlled with this sytem property: ro.factorytest Possible values: public static final int FACTORY_TEST_OFF = 0; public static final int FACTORY_TEST_LOW_LEVEL = 1; public static final int FACTORY_TEST_HIGH_LEVEL = 2; You'll need to look in the code to SystemServer and

Re: [android-kernel] Re: [android-developers] Android factory test mode

2010-03-22 Thread Porting beginner
On Mon, Mar 22, 2010 at 3:04 PM, Dianne Hackborn hack...@android.comwrote: It is controlled with this sytem property: ro.factorytest Possible values: public static final int FACTORY_TEST_OFF = 0; public static final int FACTORY_TEST_LOW_LEVEL = 1; public static final int

Re: [android-kernel] Re: [android-developers] Android factory test mode

2010-03-22 Thread Dianne Hackborn
The is no mode for apps. This is for running the system in special modes with security turned off and few things running. You shouldn't care about any of the normal apps; you should be putting special apps on the device to run factory tests (that will run instead of home). On Mon, Mar 22, 2010

Re: [android-kernel] Re: [android-developers] Android factory test mode

2010-03-22 Thread Dianne Hackborn
On Mon, Mar 22, 2010 at 9:07 PM, Shuduo Sang sangshu...@gmail.com wrote: Is it also named fast boot mode? No that is unrelated. -- Dianne Hackborn Android framework engineer hack...@android.com Note: please don't send private questions to me, as I don't have time to provide private support,