aboutsummaryrefslogtreecommitdiffstats
path: root/android/boot-properties.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix premature boot-properties service disconnect.Vladimir Chtchetkine2011-08-271-1/+0
| | | | Change-Id: I746147ab0c441a05055f7fc878eda3e035c0da14
* Enable qemud clients to pass connection parameters to emulator.Vladimir Chtchetkine2011-08-251-2/+3
| | | | | | | | | | | | This is useful for qemud pipe clients to be able to pass parameters to the emulator service when connecting. In particular, this would be extremely useful for camera emulation clients, which can pass name of the camera device, and other parameters that may be required to connect to the camera. Parameters are passed when opening the qemud pipe in form: /dev/qemu_pipe/camera:/dev/video0 I.e. parameters follow the service name, separated from it by ':' Change-Id: I67f0ef0ff27008e2b52652e58d72d5216b244646
* Added state snapshot support for QemuD service "boot properties".Ot ten Thije2010-10-211-19/+177
| | | | Change-Id: I12383de77917c31d6227fc223753c1dcab31fb56
* Added state snapshot support for QemuD.Ot ten Thije2010-10-141-2/+3
| | | | | | | | | | | | | | | | | With this patch, both modem and sensor functionality are correctly restored when a state snapshot is loaded. This was not the case previously because communication with either of these services is done using the qemud daemon, which did not support snapshots. The boot-properties and charpipe services have no specific save/load functionality yet, since the framework itself should be reviewed first. Adding support for bootproperties should not be difficult though, and charpipe may not need it. For a description of the high-level process for saving and loading, consult section IV "State snapshots" in docs/ANDROID-QEMUD.TXT. Change-Id: I5b06d88b911ca096e78060163174904c48a01c66
* qemu-props: Signal end of property list.Dries Harnie2010-06-071-0/+4
| | | | Change-Id: I0194413e3ce93ff09aa953f283a22211e93848a1
* Fix ANDROID_SDK_HOME handling on Unix (the env. var was ignored)David 'Digit' Turner2009-07-241-4/+4
| | | | | | | | Bump version number to 1.11 in android/android.h Update CHANGES.TXT to reflect SDK 1.5_r3 changes Update some comments in android/boot-properties.[hc] Add a --debug option to android-configure.sh (and android-rebuild.sh) to build a unoptimized debug version of the standalone emulator binary.
* This adds the '-prop <name>=<value>' option which is used to setDavid 'Digit' Turner2009-05-261-0/+214
boot-time system properties from the command line. This is done by implementing a new 'boot-properties' qemud service in the emulator. This is to be used by the 'qemu-props' helper program that will be invoked by /system/etc/init.goldfish.rc to read a list of system properties from the emulator and set them in the emulated system during boot.