Francesco T 0 Posted September 15, 2022 Hi, I've downloaded the 4.19 kernel source from https://github.com/TinkerBoard2/kernel/tree/tinker_board_2-debian_10-2.1.6 and built with: make ARCH=arm64 tinker_board_2_defconfig make ARCH=arm64 rk3399-tinker_board_2.img -j8 Copied boot.img to SD card with dd if=boot.img of=/dev/mmcblk0p4 status=progress && sync Rebooted: the system is stuck at "Waiting for root device /dev/mmcblk0p9" What I did wrong? Thank you Share this post Link to post Share on other sites
tooz 53 Posted September 16, 2022 hello @Francesco T, the sd image of kernel 4.19 for tinker board 2 is mmcblk1, so it should be: sudo dd if=boot.img of=/dev/mmcblk1p4 status=progress && sync Share this post Link to post Share on other sites
Francesco T 0 Posted September 19, 2022 On 9/16/2022 at 7:59 AM, tooz said: sudo dd if=boot.img of=/dev/mmcblk1p4 status=progress && sync That worked, thank you. Share this post Link to post Share on other sites