Libre Computer AML-S905X-CC eMMC Flashing Steps from Linux with pyamlboot

interestingly enough, I didnā€™t hold down the reset button when I plugged in the LF board to my Pi and I then was able to run it. Not sure what difference that ended up making by not holding down that reboot button but it was enough that it worked.

1 Like

If there is no software on any boot device and the USB A next to the IR sensor is plugged into a USB host device, the board will go into USB load mode automatically.

I just got a ALL-H3-cc and an emmc module 32GB when i tried above command and substitute the name with all-h3-cc and tell script not found if try with the aml-s905x-cc it of course says device not found. can you tell me what command i should useing to erase-emmc and ums-emmc on a ALL-H3-cc board>

Thanks

i just recently recieved by 128GB emmc module for my ROC_RK3328-CC now too. I would appreicate so help with flashing the emmc module. why is there not a pyaml boot for the this board?

pyamlboot is only for AML-* boards. For other boards, see the generic MicroSD card eMMC flashing instructions at the top of the post.

Should the emmc just get detected as /dev/mmcblk0 once i connected and power up the ROC_RK3328-CC in ubuntu? i see the MicroSD card in Gnome Disk utulity but not the Emmc

so still no luck getting with the EMMC on ROC-RK3328-CC, I was hoping for some help. Canā€™t seem to find any thing that tells you how to actually mount the emmc or how to tell it is actually connected properly. I have seen the generic MicroSD car emmc flashing instuctions

Method 2: Flashing via Linux

  • Network Connection or USB flash drive with image
  1. Flash a MicroSD card with Raspbian or Ubuntu.
  2. Download or copy the image to your OS.
  3. Extract the image.
  4. Use dd or Gnome Disk Utility to flash the eMMC. The eMMC should show up as /dev/mmcblk0. For dd, sudo dd if=IMAGE of=/dev/mmcblk0 bs=1M. Replace IMAGE with the name of the extracted file. You can also dd the compressed image directly via xz -cd IMAGE.xz | sudo dd of=/dev/mmcblk0 bs=1M. Replace IMAGE.xz with the path to the compressed image.

I try this but when i list disk i do not see the mmcblk0 listed. If I try step 4 it says the disk is full.
I was very excited to get my eccm modules but that excitement is starting to go away.
some help would be appreciated.

Thanks

You either have the wrong eMMC or damaged eMMC.

Iā€™ve been using Lubuntu installed over the Ubuntu Server image with pretty good results. It does most of what I want, even if itā€™s not as slick as Mate, which can be installed thew same way. I found both Mate and my beloved Xubuntu to be a little too heavy for Le Potato. I might try Mate out as my daily driver now that Iā€™ve tried it on this board. I miss the old gnome.

Hereā€™s what I done:
I flashed ubuntu server to eMMC with Etcher, booted up and did the new password mumbo-jumbo.
I then connected via Ethernet, and ran:

$ sudo apt update && sudo apt -y upgrade
$ sudo apt install lubuntu-desktop
$ shutdown -h now




The command for Mate is:
$ sudo apt install ubuntu-mate-desktop

The Command for Xubuntu is:
$ sudo apt install xubuntu-desktop

Has anyone successfully flashed a USB-Attached SATA drive using MacOS Ventura (UNIX) for Le Potato?

Decompress and use dd on the terminal, just be careful to specify the correct file/drive, there are no training-wheels with dd.

sudo dd if="/PATH/TO/IMAGE.img" of="/PATH/TO/DRIVE" bs=1M

I havenā€™t used anything past snow leopard, but back then there was a disk utility you could flash drives with too, may still be there if you want a GUI.

Etcher also works on Mac.

I tried this method because my system was finding the mmcblk0 device. It copied an image of the 2023-05-03-raspbian-bullseye-arm64-lite+aml-s805x-ac.img.xz to my AML-S805X-AC, but after booting I get a ā€œNo Partition table - mmc 0ā€ then ā€œdevice 0: unknown deviceā€

Any ideas about how to fix the partitioning on the eMMC?

Thanks,
Peter

Follow official instructions. Not instructions posted by users. There is no need to mess with partition tables since they are part of the image.

I just got my eMMC working with my AML-S905X-CC and have some comments.

  1. I tried to use
    sudo pyamlboot/run.sh aml-s905x-cc ums-emmc
    but was getting the timeout even though I was on a Intel(R) Coreā„¢ i5-2400 CPU @ 3.10GHz runninb Debian 11. It turned out this was because I had plugged into my USB3 card. When I plugged directly into the Intel motherboards USB, it worked great! It got me wondering that perhaps if you have an AMD computer you could reverse the situation with a non-AMD USB board, you might be able to work around the AMD timeout problem.

  2. I was able to install debian-12 along with gnome and get the gui to work by running sudo tasksel. It turns out that since the board is based on Wayland because of framebuffer efficiency, xfce is not supported (yet?) and startx wonā€™t come up. gnome came up fine.

  3. With my install on an SD card, i was able to install a system on the eMMC by running the SD os. I downloaded on of the images to the Downloads and then ran:

xzcat ~/Downloads/debian-12-base-arm64+aml-s905x-cc.img.xz | sudo dd of=/dev/mmcblk0 bs=1M conv=fdatasync status=progress

Then power off and remove the SD and the board should come up using the newly flashed image.

  1. If you want to go back to SD booting and donā€™t care about whats on the eMMC, you can just wipe out the eMMC by running

sudo dd if=/dev/zero of=/dev/mmcblk0 bs=1M conv=fdatasync status=progress

This gets rid of your boot/EFI partition and some of the root partition. It should be enough to make the board ignore the eMMC when you poweroff and reboot with an SD card in place. You will get errors after it gets into zeroing the root partition so when you get that, just unplug the board. This part is a bit crude and I suppose we could add a count= parameter to dd. I have not tested the minimum about you need to zero to get the AML-S905X-CC to boot from the SD card.

I hope this info is helpful.

1 Like
  1. We just release Debian 12 Gnome around an hour ago: https://twitter.com/librecomputer/status/1718737392327123362

  2. count=1 is sufficient. It will wipe out the MBR at sector 0 and the bootloader at sector 1 (512B).

Silly me!. I should have realized count=1 was sufficient. I got focused on zeroing out the whole eMMC. If I really wanted to that, it would be better to wipe our sector 0, boot from my SD card and then zero out the eMMC booted from the SD. That would make the whole process a lot cleaner.

BTW, I prefer xfce over gnome. Does anyone have an idea when xfce might work with debian 12 on Libre AML-S905X-CC?

XFCE will work fine but as XFCE is based on X11, there will be more tearing on a SBC.

I suppose this is a little off topic but I finally got xfce to work. The trick is that I must use gdm as my display manager and not lightdm. My steps were:

sudo apt clean; sudo apt update; sudo apt upgrade -y; sudo apt autoremove -y
sudo apt install gdm3 xfce4 xfce4-goodies
sudo systemctl set-default graphical.target
<< reboot >>
I got a prompt as to whether to use lightdm or gdm and I chose gdm.
I think the problem I had before was having chose lightdm.