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

2010-03-23 Thread Shuduo Sang
Got it. Thanks On Tue, Mar 23, 2010 at 3:07 PM, Dianne Hackborn wrote: > Yes fastboot is the Android tool for flashing images (and doing other > things). > > On Mon, Mar 22, 2010 at 11:00 PM, Porting beginner > wrote: >> >> >> On Mon, Mar 22, 2010 at 9:41 PM, Dianne Hackborn >> wrote: >>> >>> O

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 wrote: > >> On Mon, Mar 22, 2010 at 9:07 PM, Shuduo Sang wrote: >> >>> Is i

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

2010-03-22 Thread Porting beginner
On Mon, Mar 22, 2010 at 9:41 PM, Dianne Hackborn wrote: > On Mon, Mar 22, 2010 at 9:07 PM, Shuduo Sang 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 downloading images, fastboot is pr

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 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, and so won't rep

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

2010-03-22 Thread Shuduo Sang
Is it also named "fast boot" mode? On Tue, Mar 23, 2010 at 9:13 AM, Dianne Hackborn wrote: > 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 speci

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 a

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 wrote: > 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_L

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 wrote: > 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_L

[android-kernel] 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 elsewh