소스 검색

Updated for 3.15 kernel

Bob Mottram 11 년 전
부모
커밋
792366c368
1개의 변경된 파일9개의 추가작업 그리고 7개의 파일을 삭제
  1. 9
    7
      beaglebone.txt

+ 9
- 7
beaglebone.txt 파일 보기

@@ -413,27 +413,26 @@ echo "export TZ='Europe/London'" >> /home/myusername/.bashrc
413 413
 #+END_SRC
414 414
 
415 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 418
 #+BEGIN_SRC: bash
419 419
 mkdir ~/build
420 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 422
 #+END_SRC
423 423
 
424 424
 Verify it.
425 425
 
426 426
 #+BEGIN_SRC: bash
427
-sha256sum kernel-3.14.tar.gz
428
-c489a451b2ab0442ff9105c72307061cfe6858350dacceb29e094b9a20c18739
427
+sha256sum kernel-3.15.tar.gz
428
+abf3e1077bed32a2d7b8e751a6002488032ada7611825c46b0fb548fc838fd99
429 429
 #+END_SRC
430 430
 
431 431
 Then extract and install it.
432 432
 
433 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 436
 sh install-me.sh
438 437
 #+END_SRC
439 438
 
@@ -4589,8 +4588,11 @@ git clone https://github.com/friendica/red.git htdocs
4589 4588
 chmod -R 755 htdocs
4590 4589
 chown -R www-data:www-data htdocs
4591 4590
 mkdir htdocs/view/tpl/smarty3
4591
+mkdir htdocs/store/[data]
4592
+mkdir htdocs/store/[data]/smarty3
4592 4593
 chmod 777 htdocs/view/tpl
4593 4594
 chmod 777 htdocs/view/tpl/smarty3
4595
+chmod 777 htdocs/store/[data]/smarty3
4594 4596
 git clone https://github.com/friendica/red-addons.git htdocs/addon
4595 4597
 #+END_SRC
4596 4598