Podman on Android #27060
-
Hi all, I'm using Podman on Android on specific hardware. To make it work, I had to recompile the kernel with a few additional kernel flags. The minimal set I found in my case is the following:
I understand the flags related to PID, but why is the mqueue flag required? By the way, is there any way to bypass this requirement? Maybe through a Podman or crun option? Thanks for your help, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answering to my own question. Podman create an
This is done by default, even if To bypass this problem use this simple podman option :
I think that this mounting point should not be added to BR. |
Beta Was this translation helpful? Give feedback.
Answering to my own question.
Podman create an
config.json
to be used by crun (or other) in the container image tree (.../userdata/).In this file, in the mount section, a mounting point is added for /dev/mqueue.
This is done by default, even if
--ipc=none
is specified.To bypass this problem use this simple podman option :
I think that this mounting point should not be added to
config.json
when you use--ipc=none
option.BR.