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

Update post-install.md to add Debian/Ubuntu instructions for USB-C fixes #225

Merged
merged 3 commits into from
Jan 29, 2025
Merged
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
16 changes: 15 additions & 1 deletion src/docs/installing/post-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ Install [Chrultrabook Tools](https://github.com/death7654/Chrultrabook-Tools/rel

### Fixing USB C on TigerLake and AlderLake

Distros that use dracut for initramfs, such as Fedora, have an issue which prevents the `cros_ec_typec` kernel driver from loading correctly. You can fix it with the following steps.
Fedora, Debian, and Ubuntu have an issue which prevents the `cros_ec_typec` kernel driver from loading correctly. You can fix it with the following steps:

#### Fedora

1. Create a file called `chromebook_typec.conf` file in `/etc/dracut.conf.d/`
2. Paste the following contents into the file:
Expand All @@ -47,6 +49,18 @@ Distros that use dracut for initramfs, such as Fedora, have an issue which preve

3. Rebuild your initramfs with `sudo dracut --force`.

#### Debian and Ubuntu

1. Open the file /etc/initramfs-tools/modules
2. Paste the follwing contents to the end of the file:

```txt
cros-ec-typec
intel-pmc-mux
```

3. Rebuild your initramfs with `sudo update-initramfs -u -k all`.

### CELES Post Install Workaround Possible (Linux)

If you experience issues in applications such as Parsec, or encounter disruptive freezes, adding the kernel parameters `clocksource=hpet hpet=force` may fix your problem. The following instructions assume you are using GRUB, and will be different for other bootloaders. Do your own research on how to set kernel parameters in your bootloader if these do not apply.
Expand Down