diff options
author | Mike Lockwood <lockwood@android.com> | 2011-02-03 09:51:06 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-02-03 09:51:06 -0800 |
commit | 04f024d56427ee82cf03c4403ea2f9f38a876edc (patch) | |
tree | 0ea6149ef525df855b622df15d045439adc8b262 /core/res | |
parent | acdf50c4a6e5b02ca3905b3dcf4d262885a3efc2 (diff) | |
parent | 8b682ad08a8e55b3ce2cf58f3aff6d3464ab668b (diff) | |
download | frameworks_base-04f024d56427ee82cf03c4403ea2f9f38a876edc.zip frameworks_base-04f024d56427ee82cf03c4403ea2f9f38a876edc.tar.gz frameworks_base-04f024d56427ee82cf03c4403ea2f9f38a876edc.tar.bz2 |
Merge changes I80558c62,I6587f580
* changes:
UsbService: Blacklist HID boot subclass devices (keyboards and mice)
UsbService: Add support for blacklisting certain USB busses
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/values/config.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 713fa8e..0edd33e 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -284,6 +284,14 @@ <!-- Indicate whether the device has USB host support. --> <bool name="config_hasUsbHostSupport">false</bool> + <!-- List of file paths for USB host busses to exclude from USB host support. + For example, if the first USB bus on the device is used to communicate + with the modem or some other restricted hardware, add "/dev/bus/usb/001/" + to this list. If this is empty, no parts of the host USB bus will be excluded. + --> + <string-array name="config_usbHostBlacklist"> + </string-array> + <!-- Vibrator pattern for feedback about a long screen/key press --> <integer-array name="config_longPressVibePattern"> <item>0</item> |