commit d8cfb53e0a37ac458ce9a1457ee8e29c9f9b11f2 parent a161c16d1cd3199c84f45119ebe8af54da84af82 Author: smeeb <smeeb@web> Date: Tue, 5 May 2026 10:28:05 +0200 Diffstat:
| M | unbrick01.mdwn | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/unbrick01.mdwn b/unbrick01.mdwn @@ -121,3 +121,21 @@ __*All*__ hardware buttons __*and*__ the touchscreen are working. * `KEY_VOLUMEUP` is mapped to `/dev/input/event3` * `KEY_VOLUMEDOWN` is mapped to `/dev/input/event1` * `ABS_X`, `ABS_Y` (touchscreen) etc. is mapped to `/dev/input/event2` + +## Install libpd + +Make sure the date of the phone is set. Manually works for now by running `date -s "2026-05-05 10:22:00"`. Change the date/time accordingly. + +Add the testing repo to the bottom of the `/etc/apk/repositories` file + +```bash +@edge https://dl-cdn.alpinelinux.org/alpine/edge/testing +``` + +Update apk and install `libpd`. + +```bash +apk update +apk add libpd-dev@edge libpd@edge +``` +