cd       /usr/src
rm  -rf  linux-$VERSION
rm  -f   linux

unpack  $SOURCE

ln  -s     linux-$VERSION  linux

if  [  -f   $CONFIG_CACHE/.config  ];  then
  cp        $CONFIG_CACHE/.config  /usr/src/linux
fi

cd /usr/src/linux

bzcat $SOURCE_CACHE/$SOURCE2 | patch -p1 >/dev/null && echo "successful patch!!"

chown -R root.root ../linux-$VERSION ../linux

true

