diff options
Diffstat (limited to 'docs/misc')
-rw-r--r-- | docs/misc/bbb_ehci.md | 4 | ||||
-rw-r--r-- | docs/misc/index.md | 23 | ||||
-rw-r--r-- | docs/misc/patch.md | 19 |
3 files changed, 0 insertions, 46 deletions
diff --git a/docs/misc/bbb_ehci.md b/docs/misc/bbb_ehci.md index 51fd40df..567ceb37 100644 --- a/docs/misc/bbb_ehci.md +++ b/docs/misc/bbb_ehci.md @@ -2,8 +2,6 @@ [Back to previous index](./) - - EHCI debugging ============== @@ -353,8 +351,6 @@ Interface](http://cs.usfca.edu/~cruse/cs698s10/) 3. Patch and compule g\_dbgp on BBB instead cross-compile 4. Find a simple way to send debug messages from targets userland - - Copyright © 2015 Alex David <opdecirkel@gmail.com>\ Permission is granted to copy, distribute and/or modify this document under the terms of the Creative Commons Attribution-ShareAlike 4.0 diff --git a/docs/misc/index.md b/docs/misc/index.md index dabe1e54..0c9bac52 100644 --- a/docs/misc/index.md +++ b/docs/misc/index.md @@ -1,6 +1,5 @@ % Miscellaneous - - [High Pitched Whining Noise on Idle (how to remove in Debian or Devuan)](#debian_powertop) @@ -16,12 +15,9 @@ Black](bbb_ehci.html) - [e1000e driver trouble shooting (Intel NICs)](#e1000-hang) - - High Pitched Whining Noise on Idle (how to remove in Debian or Devuan) {#debian_powertop} ====================================================================== - Start powertop automatically at boot time {#debian_powertop_autostart} ----------------------------------------- @@ -37,11 +33,8 @@ If powertop doesn't work, another way (reduces battery life slightly) is to add *processor.max\_cstate=2* to the *linux* line in grub.cfg, using [this guide](../gnulinux/grub_cbfs.html). - [Back to top of page](#pagetop) - - High Pitched Whining Noise on Idle (how to remove in Parabola) {#high_pitch_parabola} ============================================================== @@ -96,8 +89,6 @@ using [this guide](../gnulinux/grub_cbfs.html). [Back to top of page](#pagetop) - - X60/T60: Serial port - how to use (for dock owners) {#serial} =================================================== @@ -138,8 +129,6 @@ change the **linux** line to add instructions for enabling getty. See [Back to top of page](#pagetop) - - Finetune backlight control on intel gpu's ========================================= @@ -222,8 +211,6 @@ is BLC\_PWM\_CTL described in on page 94. More research needs to be done on this target so proceed with care. - - Power Management Beeps on Thinkpads =================================== @@ -243,8 +230,6 @@ Disable or enable beeps when battery is low: A reboot is required, for these changes to take effect. - - Get EDID: Find out the name (model) of your LCD panel {#get_edid_panelname} ===================================================== @@ -265,10 +250,6 @@ If neither of these options work (or they are unavailable), physically removing the LCD panel is an option. Usually, there will be information printed on the back. -[Back to top of page.](#pagetop) - - - e1000e driver trouble shooting (Intel NICs) {#e1000-hang} =========================================== @@ -294,8 +275,6 @@ across subnets on the same interface (NIC). More information, including logs, can be found on [this page](https://notabug.org/vimuser/libreboot/issues/23). - - USB keyboard wakeup on GM45 laptops {#usb_keyboard_gm45} =================================== @@ -303,8 +282,6 @@ Look at resources/scripts/helpers/misc/libreboot\_usb\_bugfix Put this script in /etc/init.d/ on debian-based systems. - - Copyright © 2014, 2015, 2016 Leah Rowe <info@minifree.org>\ Permission is granted to copy, distribute and/or modify this document under the terms of the Creative Commons Attribution-ShareAlike 4.0 diff --git a/docs/misc/patch.md b/docs/misc/patch.md index 73d4979a..419654a7 100644 --- a/docs/misc/patch.md +++ b/docs/misc/patch.md @@ -4,8 +4,6 @@ This is just a quick guide for reference, use 'man' to know more. [Back to index](./) - - Apply a patch ============= @@ -13,7 +11,6 @@ To apply a patch to a single file, do that in it's directory: $ patch < foo.patch - Assuming that the patch is distributed in unified format identifying the file the patch should be applied to, the above will work. Otherwise: @@ -46,10 +43,6 @@ Removing a patch using the -R flag $ patch -p5 -R < baz.patch -[Back to top of page.](#pagetop) - - - Create a patch with diff ======================== @@ -65,10 +58,6 @@ Do whatever you want in new/ and then diff it: $ diff -rupN original/ new/ > original.patch -[Back to top of page.](#pagetop) - - - git diff ======== @@ -88,10 +77,6 @@ Alternatively (better yet), commit your changes and then use: $ git format-patch -N Replace N with the number of commits that you want to show. -[Back to top of page.](#pagetop) - - - git apply ========= @@ -110,10 +95,6 @@ If you use a patch from git format-patch, then use **git am patch.git** instead of **git apply patch.git**. git-am will re-create the commits aswell, instead of just applying the patch. -[Back to top of page.](#pagetop) - - - Copyright © 2014, 2015 Leah Rowe <info@minifree.org>\ Permission is granted to copy, distribute and/or modify this document under the terms of the Creative Commons Attribution-ShareAlike 4.0 |