Skip to content

Instantly share code, notes, and snippets.

@jrossmanjr
Created March 14, 2018 04:03
Show Gist options
  • Save jrossmanjr/b363bb66596e80772aa6ae44943a243f to your computer and use it in GitHub Desktop.
Save jrossmanjr/b363bb66596e80772aa6ae44943a243f to your computer and use it in GitHub Desktop.
Quick script to install the V10 Chip kernel -- https://goo.gl/up1V5z
#!/usr/bin/env bash
touch /etc/apt/sources.list.d/v10chiprepo.list
echo 'deb https://chiprepo.home.v10lator.de/packages jessie main' | tee --append /etc/apt/sources.list.d/v10chiprepo.list
apt-get install apt-transport-https
wget -O - https://chiprepo.home.v10lator.de/v10chiprepo.gpg.key | apt-key add -
apt-get update
apt-get install linux-image-4.4.13-v10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment