summaryrefslogtreecommitdiff
path: root/static
AgeCommit message (Collapse)Author
2021-01-31Update fastboot.js for live progress updatesDanny Lin
2021-01-30stop calling WebUSB installer experimentalDaniel Micay
2021-01-30add Windows Update driver informationDaniel Micay
2021-01-29Update fastboot.js to fix fastbootd flashing from AndroidDanny Lin
The fastbootd flashing path was missing a reconnect callback.
2021-01-29avoid inline CSS to fix CSP issueDaniel Micay
2021-01-29web-install: Implement Android reconnection callbackDanny Lin
On Android, Chromium does not support automatic reconnection. The user must manually pair the device after every reboot in order for fastboot.js to reconnect to it. Unfortunately, this requires the user of the library to get involved because USB device connction requests are only allowed as the result of explicit user action, so we need to add a reconnect request callback for the user to handle.
2021-01-29Update fastboot.js for Android reconnection handlerDanny Lin
2021-01-29Replace inappropriate hyphensmadaidan
2021-01-29fix typoDaniel Micay
2021-01-29Update fastboot.js for AVB key flashing fixDanny Lin
2021-01-29emphasize that web install is experimentalDaniel Micay
2021-01-29add redirect script to install pagesDaniel Micay
2021-01-29simplify wording for fastboot as non-root sectionDaniel Micay
2021-01-29split long paragraph about AuditorDaniel Micay
2021-01-29discourage interrupting flashing prematurelyDaniel Micay
2021-01-27update notes for progress on WebUSB installerDaniel Micay
2021-01-27web-install: Remove stray log messageDanny Lin
This was never meant to be shipped.
2021-01-27web-install: Handle bootloader lock/unlock errorsDanny Lin
2021-01-27web-install: Rethrow errors after handlingDanny Lin
After handling errors and showing them to the user, we can rethrow them to make them show up in the console. This helps greatly with debugging.
2021-01-27Update web installer for fastboot.js updatesDanny Lin
Some of the API and paths have changed, so this needs to be updated accordingly. The most prominent change is the removal of BlobStore and downloading support from fastboot.js, because a fastboot library should not be responsible for downloading files.
2021-01-27Update fastboot.js submoduleDanny Lin
Improvements: - Better documentation - Less ambiguous bundle file extension - Support for logical partitions (via fastbootd) - More robust flashing - More consistent code quality - Requirement checks before flashing - More flexible factory zip handling - Support for wiping logical partitions and userdata - Configurable debug mode - More detailed flashing progress - Conformant factory image flashing process - Automatic reconnection upon connection loss - Graceful handling of connection loss - Automatic reuse of already-paired USB devices - User-friendly progress/status text
2021-01-27update sample build number for CLI installDaniel Micay
2021-01-25clarify state of web installerDaniel Micay
2021-01-25discourage using WebUSB-based installer for nowDaniel Micay
2021-01-25wrap line consistentlyDaniel Micay
2021-01-25update PayPal informationDaniel Micay
2021-01-25update PayPal email addressDaniel Micay
2021-01-25fix typo in URLDaniel Micay
2021-01-25update static releases listingDaniel Micay
2021-01-25update OpenGraph titles for install pagesDaniel Micay
2021-01-25reorganize sitemapDaniel Micay
2021-01-24raise install index page priorityDaniel Micay
2021-01-24update titles for install pagesDaniel Micay
2021-01-24add Microsoft Edge as an officially tested browserDaniel Micay
2021-01-24udev rules are still an issue for Linux WebUSBDaniel Micay
2021-01-24update main header for CLI install pageDaniel Micay
2021-01-24create an install directory with an index pageDaniel Micay
2021-01-24clarify toybox prebuilt is part of toolchainDaniel Micay
2021-01-24add 2021.01.23.03 to table of contentsDaniel Micay
2021-01-242021.01.23.03 release notesDaniel Micay
2021-01-23Switch to new bundled fastboot.jsDanny Lin
This simplifies cache busting greatly without needing to do further processing on any fastboot.js code before deploying. It also removes the need for a non-module script with global scope.
2021-01-23Update fastboot submodule for bundlesDanny Lin
2021-01-23Update web install for fastboot.js and zip.js updatesDanny Lin
2021-01-23Update fastboot.js for zip.js updatesDanny Lin
This reduces the size of the zip.js libraries and improves flashing speed by 1.7x due to the Pako inflate implementation.
2021-01-23update fastboot submoduleDaniel Micay
2021-01-23document additional Vanadium build dependenciesDaniel Micay
2021-01-23add /web-install to sitemapDaniel Micay
2021-01-23add a temporary warning to the web install pageDaniel Micay
2021-01-23Implement web install using fastboot.jsDanny Lin
This implements the WebUSB-based web installer using fastboot.js to act as a fastboot client. A bare minimum UI with a plain-text status/progress caption for each step is included, as well as a plain button to trigger it and basic error handling. WebADB has been removed now that we are only using fastboot.js. Initial features: - Unlocking and locking the bootloader - Downloading the latest GrapheneOS release available for the device - Flashing the factory images zip - Reusing USB connections
2021-01-23Include fastboot.js as submoduleDanny Lin
This will be used for implementing a WebUSB-based installer.