-
-
- Posts: 3
- Joined: 2025-01-20 7:19
Hi
I just received core 3576 from Waveshare (Aliexpress) and installing Nvme which use Ras Pi imager wrote "home assistant OS" to it.
but how to make it boot from Nvme device ? (I did not boot the board yet)
Try to find information about luckfox but nothing help me.
Please guide me as I am 5 years old
PS. I had brick another Rockchip so This a little bit scary me for involve with it rom.
Thank you in advance
Edit here:
Can I use luck-config to change boot order like other Pi devices ?
and if it can do what image I should use or I need to install complete linux before use luck-config.
-
- Posts: 318
- Joined: 2023-12-09 3:09
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
-
- Posts: 3
- Joined: 2025-01-20 7:19
-
- Posts: 3
- Joined: 2025-01-20 7:19
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.
-
- Posts: 32
- Joined: 2023-11-30 8:12
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";
-
- Posts: 3
- Joined: 2025-01-20 7:19
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.
-
- Posts: 318
- Joined: 2023-12-09 3:09
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:
Alternatively, you can directly use apt-mark showhold to view:
If you need to unlock a package, you can use:
Code: Select all
sudo apt-mark unhold <package-name>