Core 3576

  • Hello, the Luckfox Omni3576 currently does not support booting from NVMe. We have not yet modified the boot order, and we are unsure of the exact model of your development board. Normally, we have a version with onboard eMMC.
    For more details, please refer to: https://wiki.luckfox.com/luckfox-Omni3576/Burn-image
  • Thank you for reply.
  • Me again

    Maybe I'd asked wrong question. I should ask "Can I have a root on Nvme?" and don't mind where the board boot from.

    My board is omni3576 with Aluminum case
    Waveshare Luckfox Core3576 Edge Computing Development Board, Rockchip RK3576 Octa-Core 2.2GHz,Features A big.LITTLE Architecture
    Now I'd try to search the different configurations between Luckfox's rockchip and others manufactures but as I'd said in this area (single board computer) I am like a five years old kid.
  • I think you can first boot UBOOT or kernel from eMMC or SD card, then enter the nvme rootfs, depending on you.
    For example: Starting rootfs after kernel can be specified to start rootfs through bootargs, and there is corresponding description in our luckfox-core3576.dtsi.

    Code: Select all

    bootargs = "earlycon=uart8250,mmio32,0x2ad40000 console=ttyFIQ0 root=PARTUUID=614e0000-0000 rw rootwait rcupdate.rcu_expedited=1 rcu_nocbs=all";
    
  • Eng33 wrote: 2025-02-18 12:26 I think you can first boot UBOOT or kernel from eMMC or SD card, then enter the nvme rootfs, depending on you.
    For example: Starting rootfs after kernel can be specified to start rootfs through bootargs, and there is corresponding description in our luckfox-core3576.dtsi.

    Code: Select all

    bootargs = "earlycon=uart8250,mmio32,0x2ad40000 console=ttyFIQ0 root=PARTUUID=614e0000-0000 rw rootwait rcupdate.rcu_expedited=1 rcu_nocbs=all";
    
    Thank you for reply.
    As I am a newbie in arm SBC can you give me more detail.

    Is that do in grub stage on emmc, right?
    and another question Can I use Debian official repo?
    Got a problem with default repo It can use apt update and can see upgradable from apt list --upgradable but can't apt upgrade the result is
    0 upgraded, 0 newly installed, 0 to remove and 127 not upgraded.
    ps :
    I just first boot it this day
    and apologize for my english
    Last edited by Isra on 2025-02-20 14:11, edited 1 time in total.
  • The packages that cannot be updated are locked to prevent certain packages from being modified or deleted during the upgrade process, thereby maintaining system stability. Specifically, the purpose of locking packages is usually to avoid accidental updates of critical components during system upgrades, which could lead to system instability or compatibility issues.

    To check which packages are locked, you can use the following command to see the packages currently locked in the system:

    Code: Select all

    dpkg --get-selections | grep hold
    Alternatively, you can directly use apt-mark showhold to view:

    Code: Select all

    sudo apt-mark showhold
    If you need to unlock a package, you can use:

    Code: Select all

    sudo apt-mark unhold <package-name>