#1 Update: Recent Rapsberry Pi (downstream) kernel dt-overlays now exposes a config option "krnbt" that negates the need for all this.
Relevant PRs: raspberrypi/linux#3682
[Pi 3B (Non-Plus) / Pi Zero W ONLY]
As of kernel package, linux-raspberrypi-4.14.59-1, support for notifying the kernel of the
git remote add upstream https://github.com//.git
git fetch upstream
git checkout master
git merge upstream/master
git push
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local lpeg = require 'lpeg' | |
| local L = lpeg.locale() | |
| local P,V,C,Ct,S,R,Cg,Cc = | |
| lpeg.P, lpeg.V, lpeg.C, lpeg.Ct, lpeg.S, lpeg.R, lpeg.Cg, lpeg.Cc | |
| local ws = S'\r\n\f\t\v ' | |
| local ws0 = ws^0 | |
| local ws1 = ws^1 | |
| local name = S'_ ' + L.digit + L.alpha |
OlderNewer