Merge commit '8c92ba1921fc8dc3fc7cc39ef854e9ee70fafc67'
* commit '8c92ba1921fc8dc3fc7cc39ef854e9ee70fafc67': (21 commits)
BUGFIX - ro.kernel.android.{qemud | ril} and ro.android.noril
Allow an onrestart command to stop the current service
added chdir/chroot commands to init for mount switching/pivoting
Trivial implementation of init's import command.
adb: Fix emulator support.
Fix broken 'adb root' command.
adb: Improved support for running adb over TCP/IP
BUG 2033924: Add AdbWinUsbApi.dll to prebuilt for Windows SDK
adb: Fix infinite loop in Linux host device discovery.
adb: print better error message when there are insufficient permissions for a device.
adb: update call to register_usb_transport in Mac and Windows builds.
adb: On Linux, detect USB devices for which adb does not have permissions to communicate with.
adb: Use correct language ID when retrieving USB serial number.
adb: Remove adbd from simulator build.
adb: add "adb reboot" command.
get rid of utils/executablepath.h, which now lives in the simulator
Allow adb to use ANDORID_SERIAL env variable to specify the device to talk to.
Fix incorrect check for LOG_UEVENTS
init.rc: Fixes typo: sytem -> system.
completed implementation of "trigger" for init
...
Merge commit 'a360f29264fe9c63963e4b789b56b94a5eb8af27'
* commit 'a360f29264fe9c63963e4b789b56b94a5eb8af27':
vold: Format cards < 2GB as FAT16, otherwise FAT32. Also let the formatter
Merge commit '4ad30d2885a801ee23fb44c1edcda051905868c9' into eclair-plus-aosp
* commit '4ad30d2885a801ee23fb44c1edcda051905868c9':
vold: Format cards < 2GB as FAT16, otherwise FAT32. Also let the formatter
This fixes both a typo and the fact that sh seems not to have
test or [.
(see also sh/builtins.def: ##testcmd commented out)
The handling of these properties was broken, having the effect
that the Modem in ... internal/telephony/test/Simulated*.java
was never run, even if it would have been the users/developers
intention.
See also issue #1380http://code.google.com/p/android/issues/detail?id=1380
Signed-off-by: Simon.Braunschmidt@gmail.com>
For example,
service recovery /sbin/recovery
onrestart start loadkeys
onrestart class_start con
onrestart stop recovery
Previously, if you had a service like the above, the "onrestart stop
recovery" clause would not have any effect, because the restart flag
would be re-set after the stop command had executed.
This is similar to a service with the "oneshot" keyword, with the critical
difference being that it executes the other onrestart commands when the
service dies.
Merge commit 'c158427e5edbac3ef180d1e35f99e445b11e3672' into eclair-plus-aosp
* commit 'c158427e5edbac3ef180d1e35f99e445b11e3672':
Preliminary struct and union support.
Added new commands:
adb connect <host>:<port> (to connect to a device via TCP/IP)
adb tcpip <port> (to restart adbd on the device to listen on TCP/IP)
adb usb (to restart adbd on the device to listen USB)
Signed-off-by: Mike Lockwood <lockwood@android.com>
Now, a command like "adb shell" will print "insufficient permissions for device"
instead of "device not found" if adb does not have permissions to communicate with the device.
Signed-off-by: Mike Lockwood <lockwood@android.com>
adb devices will now list devices without adequate file system permissions in /dev/bus/usb as:
List of devices attached
???????????? no permissions
Signed-off-by: Mike Lockwood <lockwood@android.com>