From 6bb047fa291bcb5b2640e6d6b62e4dae372bdeb7 Mon Sep 17 00:00:00 2001 From: claydoh <34782052+claydoh@users.noreply.github.com> Date: Tue, 28 Jan 2025 21:55:58 -0500 Subject: [PATCH 1/3] Update post-install.md to add Debian/Ubuntu instructions for USB-C fixes --- src/docs/installing/post-install.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/docs/installing/post-install.md b/src/docs/installing/post-install.md index 0a437edc..bd657476 100644 --- a/src/docs/installing/post-install.md +++ b/src/docs/installing/post-install.md @@ -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: @@ -47,6 +49,16 @@ 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. From 3123e04edadfc6d4ca163818e0f1dec513fc719a Mon Sep 17 00:00:00 2001 From: claydoh <34782052+claydoh@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:36:10 -0500 Subject: [PATCH 2/3] Update post-install.md adding fixes for usb-c on Debian and Ubuntu Fixed formatting issues --- src/docs/installing/post-install.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/docs/installing/post-install.md b/src/docs/installing/post-install.md index bd657476..df0e7b77 100644 --- a/src/docs/installing/post-install.md +++ b/src/docs/installing/post-install.md @@ -50,13 +50,15 @@ Fedora, Debian, and Ubuntu have an issue which prevents the `cros_ec_typec` kern 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 -``` + ```txt + cros-ec-typec + intel-pmc-mux + ``` + 3. Rebuild your initramfs with `sudo update-initramfs -u -k all`. ### CELES Post Install Workaround Possible (Linux) From eb95d1820ee43d08a9c92f7a995bfa6df2327e3f Mon Sep 17 00:00:00 2001 From: claydoh <34782052+claydoh@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:38:06 -0500 Subject: [PATCH 3/3] Update post-install.md --- src/docs/installing/post-install.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/docs/installing/post-install.md b/src/docs/installing/post-install.md index df0e7b77..f7ae2476 100644 --- a/src/docs/installing/post-install.md +++ b/src/docs/installing/post-install.md @@ -54,10 +54,10 @@ Fedora, Debian, and Ubuntu have an issue which prevents the `cros_ec_typec` kern 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 - ``` + ```txt + cros-ec-typec + intel-pmc-mux + ``` 3. Rebuild your initramfs with `sudo update-initramfs -u -k all`.