浏览代码

Updated for 3.15 kernel

Bob Mottram 11 年前
父节点
当前提交
792366c368
共有 1 个文件被更改,包括 9 次插入7 次删除
  1. 9
    7
      beaglebone.txt

+ 9
- 7
beaglebone.txt 查看文件

413
 #+END_SRC
413
 #+END_SRC
414
 
414
 
415
 ** Upgrade the kernel
415
 ** Upgrade the kernel
416
-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.
416
+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).
417
 
417
 
418
 #+BEGIN_SRC: bash
418
 #+BEGIN_SRC: bash
419
 mkdir ~/build
419
 mkdir ~/build
420
 cd ~/build
420
 cd ~/build
421
-wget http://freedombone.uk.to/kernel-3.14.tar.gz
421
+wget http://freedombone.uk.to/kernel-3.15.tar.gz
422
 #+END_SRC
422
 #+END_SRC
423
 
423
 
424
 Verify it.
424
 Verify it.
425
 
425
 
426
 #+BEGIN_SRC: bash
426
 #+BEGIN_SRC: bash
427
-sha256sum kernel-3.14.tar.gz
428
-c489a451b2ab0442ff9105c72307061cfe6858350dacceb29e094b9a20c18739
427
+sha256sum kernel-3.15.tar.gz
428
+abf3e1077bed32a2d7b8e751a6002488032ada7611825c46b0fb548fc838fd99
429
 #+END_SRC
429
 #+END_SRC
430
 
430
 
431
 Then extract and install it.
431
 Then extract and install it.
432
 
432
 
433
 #+BEGIN_SRC: bash
433
 #+BEGIN_SRC: bash
434
-mkdir kernel-3.14
435
-cd kernel-3.14
436
-tar -xzvf ../kernel-3.14.tar.gz
434
+tar -xzvf kernel-3.15.tar.gz
435
+cd kernel-3.15
437
 sh install-me.sh
436
 sh install-me.sh
438
 #+END_SRC
437
 #+END_SRC
439
 
438
 
4589
 chmod -R 755 htdocs
4588
 chmod -R 755 htdocs
4590
 chown -R www-data:www-data htdocs
4589
 chown -R www-data:www-data htdocs
4591
 mkdir htdocs/view/tpl/smarty3
4590
 mkdir htdocs/view/tpl/smarty3
4591
+mkdir htdocs/store/[data]
4592
+mkdir htdocs/store/[data]/smarty3
4592
 chmod 777 htdocs/view/tpl
4593
 chmod 777 htdocs/view/tpl
4593
 chmod 777 htdocs/view/tpl/smarty3
4594
 chmod 777 htdocs/view/tpl/smarty3
4595
+chmod 777 htdocs/store/[data]/smarty3
4594
 git clone https://github.com/friendica/red-addons.git htdocs/addon
4596
 git clone https://github.com/friendica/red-addons.git htdocs/addon
4595
 #+END_SRC
4597
 #+END_SRC
4596
 
4598