Updated for 3.15 kernel
This commit is contained in:
parent
3398bc20cd
commit
792366c368
|
@ -413,27 +413,26 @@ echo "export TZ='Europe/London'" >> /home/myusername/.bashrc
|
|||
#+END_SRC
|
||||
|
||||
** 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
|
||||
mkdir ~/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
|
||||
|
||||
Verify it.
|
||||
|
||||
#+BEGIN_SRC: bash
|
||||
sha256sum kernel-3.14.tar.gz
|
||||
c489a451b2ab0442ff9105c72307061cfe6858350dacceb29e094b9a20c18739
|
||||
sha256sum kernel-3.15.tar.gz
|
||||
abf3e1077bed32a2d7b8e751a6002488032ada7611825c46b0fb548fc838fd99
|
||||
#+END_SRC
|
||||
|
||||
Then extract and install it.
|
||||
|
||||
#+BEGIN_SRC: bash
|
||||
mkdir kernel-3.14
|
||||
cd kernel-3.14
|
||||
tar -xzvf ../kernel-3.14.tar.gz
|
||||
tar -xzvf kernel-3.15.tar.gz
|
||||
cd kernel-3.15
|
||||
sh install-me.sh
|
||||
#+END_SRC
|
||||
|
||||
|
@ -4589,8 +4588,11 @@ git clone https://github.com/friendica/red.git htdocs
|
|||
chmod -R 755 htdocs
|
||||
chown -R www-data:www-data htdocs
|
||||
mkdir htdocs/view/tpl/smarty3
|
||||
mkdir htdocs/store/[data]
|
||||
mkdir htdocs/store/[data]/smarty3
|
||||
chmod 777 htdocs/view/tpl
|
||||
chmod 777 htdocs/view/tpl/smarty3
|
||||
chmod 777 htdocs/store/[data]/smarty3
|
||||
git clone https://github.com/friendica/red-addons.git htdocs/addon
|
||||
#+END_SRC
|
||||
|
||||
|
|
Loading…
Reference in New Issue