Updated for 3.15 kernel

This commit is contained in:
Bob Mottram 2014-08-03 14:15:09 +01:00
parent 3398bc20cd
commit 792366c368
1 changed files with 9 additions and 7 deletions

View File

@ -413,27 +413,26 @@ echo "export TZ='Europe/London'" >> /home/myusername/.bashrc
#+END_SRC #+END_SRC
** Upgrade the kernel ** Upgrade the kernel
Using a more recent kernel should improve stability of the system and also allow it to make use of hardware random number generation, which improves the overall security. Please note that this kernel is specific to the BBB, so if you're using a Raspberry Pi, Cubieboard or other SBC then look elsewhere on the web for information about upgrading the kernel. Using a more recent kernel should improve stability of the system and also allow it to make use of hardware random number generation, which improves the overall security. Please note that this kernel is specific to the BBB, so if you're using a Raspberry Pi, Cubieboard or other SBC then look elsewhere on the web for information about upgrading the kernel. Newer kernels are also available at http://rcn-ee.net/deb/wheezy-armhf ("bone" in the name indicates kernels with BBB specific patches).
#+BEGIN_SRC: bash #+BEGIN_SRC: bash
mkdir ~/build mkdir ~/build
cd ~/build cd ~/build
wget http://freedombone.uk.to/kernel-3.14.tar.gz wget http://freedombone.uk.to/kernel-3.15.tar.gz
#+END_SRC #+END_SRC
Verify it. Verify it.
#+BEGIN_SRC: bash #+BEGIN_SRC: bash
sha256sum kernel-3.14.tar.gz sha256sum kernel-3.15.tar.gz
c489a451b2ab0442ff9105c72307061cfe6858350dacceb29e094b9a20c18739 abf3e1077bed32a2d7b8e751a6002488032ada7611825c46b0fb548fc838fd99
#+END_SRC #+END_SRC
Then extract and install it. Then extract and install it.
#+BEGIN_SRC: bash #+BEGIN_SRC: bash
mkdir kernel-3.14 tar -xzvf kernel-3.15.tar.gz
cd kernel-3.14 cd kernel-3.15
tar -xzvf ../kernel-3.14.tar.gz
sh install-me.sh sh install-me.sh
#+END_SRC #+END_SRC
@ -4589,8 +4588,11 @@ git clone https://github.com/friendica/red.git htdocs
chmod -R 755 htdocs chmod -R 755 htdocs
chown -R www-data:www-data htdocs chown -R www-data:www-data htdocs
mkdir htdocs/view/tpl/smarty3 mkdir htdocs/view/tpl/smarty3
mkdir htdocs/store/[data]
mkdir htdocs/store/[data]/smarty3
chmod 777 htdocs/view/tpl chmod 777 htdocs/view/tpl
chmod 777 htdocs/view/tpl/smarty3 chmod 777 htdocs/view/tpl/smarty3
chmod 777 htdocs/store/[data]/smarty3
git clone https://github.com/friendica/red-addons.git htdocs/addon git clone https://github.com/friendica/red-addons.git htdocs/addon
#+END_SRC #+END_SRC