Skip to content

Instantly share code, notes, and snippets.

@ignapk
Last active April 28, 2023 12:29
Show Gist options
  • Select an option

  • Save ignapk/623b67412ad763cab9e469ceb7481662 to your computer and use it in GitHub Desktop.

Select an option

Save ignapk/623b67412ad763cab9e469ceb7481662 to your computer and use it in GitHub Desktop.
Install ChromeOS kernel

First for all distros:

wget https://github.com/eupnea-linux/chromeos-kernel/releases/download/v5.10.165/bzImage
wget https://github.com/eupnea-linux/chromeos-kernel/releases/download/v5.10.165/modules.tar.xz
sudo tar xf modules.tar.xz -C /lib/modules
mv bzImage vmlinuz

Then for specific distros

Fedora

sudo kernel-install add 5.10.165-eupnea vmlinuz

Arch

chmod +x vmlinuz
sudo cp vmlinuz /boot/vmlinuz-5.10.165-eupnea
sudo mkinitcpio --generate /boot/initramfs-5.10.165-eupnea.img --kernel 5.10.165-eupnea
sudo grub-mkconfig -o /boot/grub/grub.cfg

Ubuntu

chmod +x vmlinuz
sudo cp vmlinuz /boot/vmlinuz-5.10.165-eupnea
sudo update-initramfs -c -k 5.10.165-eupnea
sudo update-grub
@Apacelus

Apacelus commented Mar 5, 2023

Copy link
Copy Markdown

I would recommend not using the dev builds as they can be very broken at times

@ignapk

ignapk commented Mar 6, 2023

Copy link
Copy Markdown
Author

Switched to v5.10.165 branch ๐Ÿ‘Œ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment