-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filesystem support for qemu #4911
Comments
(01:14:40 PM) Anas: any idea if there is a way to emulate internal flash of an mcu with qemu? (#4911) |
N/A |
@carlescufi @andrewboie What is the status on this topic? We try to achieve the same thing. So far we managed to mount a little FS filesystem on QEMU_X86. But we strugle on how to put data from the host system to the guest system (QEMU). I think the drive parameter would be the right approach but I can't see how to use it so that it gets detected by Zephyr. |
@mglettig this is supported in native_posix instead, maybe that would be a solution for you? |
@mglettig, it's quite easy to create a |
Good idea. Unfortunately this is not possible in my case due to this bug here: #34226 So I'm currently stuck with QEMU. @yashi This sounds very promising. How can I point to the generated file system image from QEMU? And how will my Zephyr application find this filesystem image so I can mount the Little FS filesystem? Any hints would be welcome. |
@mglettig Oops, I meant native_posix instance, zephyr.exe. Not qemu. Sorry about that. |
I'd like to be able to do something like "make run FS=/some/host/path" and have the directory structure under /some/host/path become available inside qemu as persistent storage that can be accessed using the Zephyr file system APIs.
The text was updated successfully, but these errors were encountered: