Merge pull request #31 from plabadens/keyboard-updater

keyboard-updater: 2020-01-22 → 2021-07-28
This commit is contained in:
Samuel Dionne-Riel 2021-09-04 17:11:07 -04:00 committed by GitHub
commit 7df87f4f3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -119,6 +119,11 @@ Note that the default U-Boot build does not do anything with LED on startup.
>
> It is unclear how to identify said hardware from a running system.
To determine which keyboard controller you have, you will need to disassemble
the Pinebook Pro as per [the Pine64
wiki](https://wiki.pine64.org/wiki/Pinebook_Pro#Keyboard), and make sure that
the IC next to the U23 marking on the main board is an **SH68F83**.
```
$ nix-build -A pkgs.pinebookpro-keyboard-updater
$ sudo ./result/bin/updater step-1 <iso|ansi>

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation {
pname = "pinebook-pro-keyboard-updater";
version = "2020-01-22";
version = "2021-07-28";
nativeBuildInputs = [
xxd
@ -18,9 +18,9 @@ stdenv.mkDerivation {
'';
src = fetchFromGitHub {
owner = "jackhumbert";
owner = "dragan-simic";
repo = "pinebook-pro-keyboard-updater";
rev = "10535c84ee599d3225b02a391c6eb2f9d8d5cdbe";
sha256 = "1kk4qzliqn1r8vfx8zdfpkpqazhxr4v2baahhgmlsblh0cm1cxnc";
rev = "bd8d2ea48992b3e6ddd0b9435d21b74cdcf97224";
hash = "sha256-3+Qsa5lk1EJrLvPSyWthqBMTqJCigbJSmnsS6hdu+w8=";
};
}