====== MPC Live ====== I recently bought this Akai [[https://www.akaipro.com/mpc-live|sampler]], after reading [[https://niklasnisbeth.gitlab.io/mpc-internals/|this article here]] and [[https://github.com/TheKikGen/MPC-LiveXplore|this]] I decided to look on mine MPC's internals too. Here is brief overview of it's configuration: >SOM: [[https://wiki.radxa.com/Rock2/som| Rock2]] >CPU: Rockchip RK3288 - Quad core ARM cortex A17 @ 1.8GHz >RAM: 2GB >eMMC: 4GB - for OS >Storage: 16GB μSD card in internal slot On FW version 2.7 it's running kernel 4.9.174 build with buildroot. Photos of internals: {{:user:trimen:all.jpg?400|}} {{:user:trimen:cpubrd.jpg?400|}} {{:user:trimen:periphbrd.jpg?400|}} {{:user:trimen:angled.jpg?400|}} On the CPU board is populated 4 pin header (on picture is connected) with UBoot/OS serial console living on it. Pinout is **GND, RX, TX, 3V3**. After connecting and powering device up you can enter UBoot bootloader or system after. Login name is root and no password is needed. From Uboot you can boot system or enter fastboot mode for flashing system image. Whole system partition is read only and for any modifications it's needs to be remounted. [[https://brmlab.cz/user/trimen/mpclive/uboot|Here is UBoot]] configuration. [[https://brmlab.cz/user/trimen/mpclive/bootlog|Here is system boot]] log. [[http://trimen.org/0tmp/SW/mmc.img|Here you can download]] eMMC binary image. ===== SSH ===== By default authorized_keys is key: cert-authority ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDHbFTQuU+WZRuYN488WRuUfvalnA9HbNNyMd8TIMlThQXiID1Au15erQ820iYS+yczQv9Fpkq3epubs31QA1bN/a+S0cTJcEIw8FUAcowN9BEu8DR5/ZqK0iHb/1VbpiQ+raaO2vz4MmcrVlJCQBqALH08kJB54OSFmUwQmqDvxelkOpzG450cNy So let's add our own ssh pubkey! In order to do that we need to log to device, remount / as RW mount -o remount,rw mmcblk2p6 Then edit /etc/ssh/sshd_config -> >Uncomment PubkeyAuthentication yes >Comment UsePAM yes >Comment UsePrivilegeSeparation sandbox Then add our ssh pubkey to ~/.ssh/authorized_keys Run sshd with /sbin/sshd Done! Now set automatic run of sshd at start -> currently I'm not able to run sshd service after boot I solved this by installing inside ESP8266 which act as serial to telnet bridge over WiFi.