Last active
July 3, 2020 12:01
-
-
Save azbesthu/3893319 to your computer and use it in GitHub Desktop.
get kernel source for current rpi raspbian wheezy kernel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
REV=`zcat /usr/share/doc/raspberrypi-bootloader/changelog.Debian.gz | grep '* firmware as of' | head -n 1 | sed -e 's/\ \*\ firmware as of \(.*\)$/\1/'` | |
rm -rf rasp-tmp | |
mkdir -p rasp-tmp | |
mkdir -p rasp-tmp/linux | |
wget https://raw.github.com/raspberrypi/firmware/$REV/extra/git_hash -O rasp-tmp/git_hash | |
wget https://raw.github.com/raspberrypi/firmware/$REV/extra/Module.symvers -O rasp-tmp/Module.symvers | |
SOURCEHASH=`cat rasp-tmp/git_hash` | |
wget https://github.com/raspberrypi/linux/tarball/$SOURCEHASH -O rasp-tmp/linux.tar.gz | |
cd rasp-tmp | |
tar -xzf linux.tar.gz | |
OSVERSION=`uname -r` | |
mv raspberrypi-linux* /usr/src/linux-source-$OSVERSION | |
ln -s /usr/src/linux-source-$OSVERSION /lib/modules/$OSVERSION/build | |
cp Module.symvers /usr/src/linux-source-$OSVERSION/ | |
modprobe configs | |
zcat /proc/config.gz > /usr/src/linux-source-$OSVERSION/.config | |
cd /usr/src/linux-source-$OSVERSION/ | |
make oldconfig | |
make prepare | |
make scripts | |
cd ~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment