Idea for quickly testing on real hardware #1366
ChocolateLoverRaj
started this conversation in
General
Replies: 1 comment
-
IDE (which is probably the first hard drive driver that you implement) has a max speed of 5MBps (with the most basic setup), which is fast enough for probably the first few months/years of development, until you need something faster because files become bigger. 12MBps should be plenty IMO. PXEYou could look into network booting, like PXE. It's something I've been thinking about lot about, but not actually done. I'd be interested in the results if you go for it (however the setup would look like). SCSIYou could probably also boot from a SCSI device. I imagine the setup quite difficult, but this would be my plan b if the 12MBps really isn't enough. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is how I currently test on real hardware (based on edition 3):
.img
file thatbuild.rs
created usingbootloader
to the Ventoyrobo360
) which is running MrChromebox UEFI firmware.my os.img
I have an idea that won't need constant plugging / unplugging and file copying:
my os.img
file.my os.img
file gets streamed from the development device to the RPI Pico to the test device.I haven't actually tried this yet since I can use QEMU for everything for now. I have a few questions:
Beta Was this translation helpful? Give feedback.
All reactions