diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-01-27 14:00:21 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-01-27 14:00:21 -0800 |
commit | 142e895a1d5030a4e032f08fa5814ebd42b964b6 (patch) | |
tree | 571023da83640e12677fe5c6d01b8e4a70752327 /fastboot | |
parent | 0c05409510037fd7372c3fe7ab240ebf33b15831 (diff) | |
parent | e83cd37e58b00fb6b9eb50464067864ca0cb2ff7 (diff) | |
download | system_core-142e895a1d5030a4e032f08fa5814ebd42b964b6.zip system_core-142e895a1d5030a4e032f08fa5814ebd42b964b6.tar.gz system_core-142e895a1d5030a4e032f08fa5814ebd42b964b6.tar.bz2 |
am e83cd37e: am 0458d373: Merge "fastboot: set the language local string"
* commit 'e83cd37e58b00fb6b9eb50464067864ca0cb2ff7':
fastboot: set the language local string
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/usb_linux.c | 5 | ||||
-rw-r--r-- | fastboot/usb_osx.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/fastboot/usb_linux.c b/fastboot/usb_linux.c index 1ba87e6..cbc64e4 100644 --- a/fastboot/usb_linux.c +++ b/fastboot/usb_linux.c @@ -139,10 +139,11 @@ static int filter_usb_device(int fd, char *ptr, int len, int writable, ctrl.bRequestType = USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE; ctrl.bRequest = USB_REQ_GET_DESCRIPTOR; ctrl.wValue = (USB_DT_STRING << 8) | dev->iSerialNumber; - ctrl.wIndex = 0; + //language ID (en-us) for serial number string + ctrl.wIndex = 0x0409; ctrl.wLength = sizeof(buffer); ctrl.data = buffer; - ctrl.timeout = 50; + ctrl.timeout = 50; result = ioctl(fd, USBDEVFS_CONTROL, &ctrl); if (result > 0) { diff --git a/fastboot/usb_osx.c b/fastboot/usb_osx.c index 570a456..6df5d2c 100644 --- a/fastboot/usb_osx.c +++ b/fastboot/usb_osx.c @@ -331,7 +331,8 @@ static int try_device(io_service_t device, usb_handle *handle) { req.bmRequestType = USBmakebmRequestType(kUSBIn, kUSBStandard, kUSBDevice); req.bRequest = kUSBRqGetDescriptor; req.wValue = (kUSBStringDesc << 8) | serialIndex; - req.wIndex = 0; + //language ID (en-us) for serial number string + req.wIndex = 0x0409; req.pData = buffer; req.wLength = sizeof(buffer); kr = (*dev)->DeviceRequest(dev, &req); |