You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used the web installer for GrapheneOS at https://grapheneos.org/install/web and was getting Timeout of 10000 ms exceeded at a particular step. I think it was the Unpacking system step or something.
The browser on my XPS laptop was getting overwhelmed at this step and couldn't complete it in the deadline. I located the timeout in the minified JS file and bumped the timeout from 1e4 to 1e5. After that the installation completed without a hitch.
Which device are you installing to? The getvar timeout is used when waiting for the device to respond to a simple "get variable" command, so it doesn't have anything to do with the speed of your laptop.
Normally, devices should respond to such a simple command instantly, but some bootloaders respond immediately to slower actions and then hang on getvar until previous command completes.
The getvar timeout is used when waiting for the device to respond to a simple "get variable" command
Yes, getvar isn't the problem here, I increased the timeout as a workaround for the actual problem.
At the unpack step I mentioned, my browser was freezing up completely for more than 10000ms. This task is presumably happening at the same time as getvar calls, and this would make sense since the code uses a lot of async. By the time the unpack had completed, the deadline for getvar had been reached.
The handset always responded within the 10000ms deadline. Up until this step which is around halfway through the installation there were no issues. It's on the browser end I'm quite sure.
I used the web installer for GrapheneOS at https://grapheneos.org/install/web and was getting
Timeout of 10000 ms exceeded
at a particular step. I think it was theUnpacking system
step or something.The browser on my XPS laptop was getting overwhelmed at this step and couldn't complete it in the deadline. I located the timeout in the minified JS file and bumped the timeout from
1e4
to1e5
. After that the installation completed without a hitch.fastboot.js/src/fastboot.ts
Line 19 in 87b2101
Thanks for this project by the way! It's really cool and makes the process a breeze for someone like me not very familiar with Android systems.
The text was updated successfully, but these errors were encountered: