Skip to content

Commit

Permalink
device-flasher: Update platform-tools to 35.0.0
Browse files Browse the repository at this point in the history
adb:
Switch to libusb as the default on Linux issue #270205252.
Fix adb startup on hosts without USB.
Fix adb hangs caused by USB devices incorrectly reporting zero-length descriptors issue #302212871.
Fix return code of adb shell when device disconnects issue #321787891.

fastboot:
Limit the maximum size of the incoming packet queue.
Remove bottlenecks that previously limited download speeds to around 120MB/s. Now fastboot can saturate a SuperSpeed+ bus and achieve speeds up to 980MB/s, depending on the device.

Change-Id: Ieb569c4e621c539d4bb1681627cfd3b7c67b8bca
  • Loading branch information
AKoskovich committed Mar 19, 2024
1 parent 13dfc2a commit 3c31460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flasher.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var executable, _ = os.Executable()
var cwd = filepath.Dir(executable)

const OS = runtime.GOOS
const PLATFORM_TOOLS_ZIP = "platform-tools_r34.0.5-" + OS + ".zip"
const PLATFORM_TOOLS_ZIP = "platform-tools_r35.0.0-" + OS + ".zip"

var adb *exec.Cmd
var fastboot *exec.Cmd
Expand Down

0 comments on commit 3c31460

Please sign in to comment.