Skip to content
Open
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
10 changes: 10 additions & 0 deletions framework12/Ubuntu-25-10.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Enabling tablet mode in Ubuntu 25.10

For tablet mode to work, the kernel modules `pinctrl_tigerlake` and `soc_button_array` must be loaded in order. Ubuntu 25.10 may load `soc_button_array` first which prevents tablet mode from working.

To fix this run:
```
echo "force_drivers+=" pinctrl_tigerlake "" | sudo tee /etc/dracut.conf.d/fw12_tablet_mode_fix.conf
sudo update-initramfs -u
```
This makes sure the `pinctrl_tigerlake` module is loaded first by adding it to the initramfs.