How to Write an Image to the eMMC Module Tutorial - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: ROCK64 (https://forum.pine64.org/forumdisplay.php?fid=85) +--- Forum: General Discussion on ROCK64 (https://forum.pine64.org/forumdisplay.php?fid=86) +--- Thread: How to Write an Image to the eMMC Module Tutorial (/showthread.php?tid=4924) |
RE: How to Write an Image to the eMMC Module Tutorial - Boia11 - 08-30-2017 (08-15-2017, 05:31 AM)MarkHaysHarris777 Wrote: Greetings,Ehi Mark! Can you add pics to the guide for make it more readable? Please RE: How to Write an Image to the eMMC Module Tutorial - jl_678 - 08-30-2017 (08-30-2017, 01:20 PM)tarlo766 Wrote: Experienced IT guy here, but noob to SBC. I just wanted to make sure I got this right.Hi, I can answer your second question. The USB to serial adapter does not require soldering. It simply attaches to the pins on rock64. The end of the adapter is a dupont connector so it can easily slide on and off the pins. Sent from my XT1254 using Tapatalk RE: How to Write an Image to the eMMC Module Tutorial - zoogoober - 08-30-2017 (08-30-2017, 04:49 PM)Boia11 Wrote:(08-15-2017, 05:31 AM)MarkHaysHarris777 Wrote: Greetings,Ehi Mark! Hey Boia11, There are pictures in the hyperlink to the serial tutorial included. Is there something specific you need pictures of that is not included there? I'm sure I can snap a couple if need be. RE: How to Write an Image to the eMMC Module Tutorial - Lexstar - 08-31-2017 I got my TTL to USB adapter today with the CH340 chip, I did every step according to the tutorial but I just get this on the console (using baud rate 150000): Code: [01:08:36:617] <break> RE: How to Write an Image to the eMMC Module Tutorial - MarkHaysHarris777 - 08-31-2017 (08-31-2017, 05:11 PM)Lexstar Wrote: I got my TTL to USB adapter today with the CH340 chip, I did every step according to the tutorial but I just get this on the console (using baud rate 150000): yeah, its not baud 150000. ... its 1.5M 1500000 Please count the zeros. RE: How to Write an Image to the eMMC Module Tutorial - belfastraven - 08-31-2017 (08-31-2017, 05:11 PM)Lexstar Wrote: I got my TTL to USB adapter today with the CH340 chip, I did every step according to the tutorial but I just get this on the console (using baud rate 150000): I believe the baud rate is actually 1500000 --I think you are missing a zero..... RE: How to Write an Image to the eMMC Module Tutorial - z4v4l - 09-03-2017 Why installation is not done by just like this: 1) insert an SD card card with the "minimal" linux. 2) snap an empty eMMC in 3) turn the board on, boot from SD 4) download an image and flash it into eMMC by that smartass script. I know it's obvious and hardly nobody could think of it before, rather there are some obstacles to do so. What they are? RE: How to Write an Image to the eMMC Module Tutorial - rhille - 09-03-2017 Did not work for me but basically did the same with an additional step and then succeeded. downloaded ayufan image and burned to sd booted from sd deleted partition on "brand new" emmc using fdisk created a new partition using fdisk created filesystem using mkfs dd image to emmc BUT since then I do have a message blk_update_request: I/O error, dev mmcblk0rpmb, sector 0 in syslog which I'm a little bit scared of. RE: How to Write an Image to the eMMC Module Tutorial - MarkHaysHarris777 - 09-03-2017 (09-03-2017, 07:43 AM)z4v4l Wrote: Why installation is not done by just like this: Hi, the reason your simplified approach will not work is that boot precedence and eMMC initialization create two problems which prevent it. If there is an image on the eMMC already, then the eMMC will boot 'first'. If there is no image on the eMMC then either the machine will not boot, or if it does boot, both devices will not be 'seen' by the OS during initialization; both mmcblk0 and mmcblk1 must be present, AND the machine has to be booted from SD. The jumper used has one function, it grounds the clock line of the eMMC, deactivating it temporarily; that way the SD card will boot-up because (for all intents and purposes) the eMMC is not there. We interrupt the boot-up at the uboot timer and then continue the bootup with the jumper removed-- this allows the boot-up to continue on SD, but also allows the OS to 'see' the eMMC module during initialization. Thanks for the question. RE: How to Write an Image to the eMMC Module Tutorial - rhille - 09-03-2017 (09-03-2017, 12:10 PM)MarkHaysHarris777 Wrote:(09-03-2017, 07:43 AM)z4v4l Wrote: Why installation is not done by just like this: Seems I'm missing something here because booted from sd Code: rock64@rock64:~$ /usr/bin/hostnamectl booted from emmc Code: rock64@therock:~$ hostnamectl Can you enlight me? |