50. linux-4.1.3

wget http://www.gnuwakes.org/depot/1.0/main/sources/linux-4.1.3.tar.xz

tar -xf linux-4.1.3.tar.xz

wget http://www.gnuwakes.org/depot/1.0/main/sources/linux-4.1.3.patch
cd linux-4.1.3
patch -p1 < ../linux-4.1.3.patch 
cd ..

SOURCES_DIR=$PWD/linux-4.1.3
INSTALL_DIR=$PWD/linux-4.1.3-install
BUILD_DIR=$PWD/linux-4.1.3-build

mkdir $INSTALL_DIR $BUILD_DIR
cd $BUILD_DIR

cd $INSTALL_DIR
ver=$(<../infos/Version)
mkdir -v boot
rsync -a /boot/*-$ver boot
mkdir -pv lib/modules
rsync -a /lib/modules/$ver lib/modules

if [ -d /lib/firmware ]
then
  rsync -a /lib/firmware lib
fi