Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix WTT links, formatting #206

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/docs/firmware/manually-flashing.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ Flashing your own firmware has the potential to brick your device. Do not do thi

1. Have your firmware rom. We will assume you already have the file you want to flash for this guide.
2. Download flashrom, then give it execute permission.
- `cd; curl -LO https://tree123.org/chrultrabook/utils/flashrom-libpci38; chmod +x flashrom-libpci38`
- For most distributions: `cd; curl -LO https://files.tree123.org/utils/x86_64/gnu/flashrom; chmod +x flashrom`
- For musl (Alpine Linux): `cd; curl -LO https://files.tree123.org/utils/x86_64/musl/flashrom; chmod +x flashrom`
3. Flash your custom ROM
- Backup your current rom, just in case things go wrong: `./flashrom-libpci38 -p internal -r current.rom`
- Backup your current rom, just in case things go wrong: `./flashrom -p internal -r current.rom`
- Note: Intel Chromebooks should be flashed with `--ifd -i bios` ex: `sudo ./flashrom -p internal --ifd -i bios -w coreboot.rom`
- Flash your custom firmware: `sudo ./flashrom-libpci38 -p internal -w firmware.rom`
- Flash your custom firmware: `sudo ./flashrom -p internal -w firmware.rom`
ninelore marked this conversation as resolved.
Show resolved Hide resolved
4. Reboot
- Assuming it said `success` on all checks, reboot.

Expand Down
6 changes: 5 additions & 1 deletion src/docs/installing/ectool.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

## Installing Ectool

If you use Fedora or Ultramarine Linux, you can install the `chromium-ectool` package from the [Terra repository](https://terra.fyralabs.com). Otherwise, you can download `ectool` for Linux from [here](https://tree123.org/files/utils/ectool). For Windows users, `ectool` is installed when you install CoolStar's Chrome EC driver and is located in `C:\Program Files\crosec\ectool.exe`.
If you use Fedora or Ultramarine Linux, you can install the `chromium-ectool` package from the [Terra repository](https://terra.fyralabs.com).

Otherwise, you can download `ectool` for Linux from [here](https://files.tree123.org/utils/x86_64/gnu/ectool). Alternatively there is a [Alpine Linux / musl version](https://files.tree123.org/utils/x86_64/musl/ectool).

For Windows users, `ectool` is installed when you install CoolStar's Chrome EC driver and is located in `C:\Program Files\crosec\ectool.exe`.

## Uses

Expand Down
Loading