diff --git a/README.md b/README.md index 88cf5ec..c6db1c3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/keyboard-updater/default.nix b/keyboard-updater/default.nix index 6103458..3f3cf71 100644 --- a/keyboard-updater/default.nix +++ b/keyboard-updater/default.nix @@ -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="; }; }