mirror of
https://gitlab.com/prpl-foundation/prplos/prplos.git
synced 2025-12-20 00:56:07 +08:00
Lxc automatically mounts sys and proc in the rootfs of the container. When an unprivileged container is created however, the sys and proc of the host should be mounted with option relatime. The procd of openwrt mounts these with option noatime. As a result, an unprivileged container cannot start. remounting them allows starting of the containers: mount -t sys sys -o remount,rw,nosuid,nodev,noexec,relatime /sys mount -t proc proc -o remount,rw,nosuid,nodev,noexec,relatime /proc The patch modifies procd to do this correctly from the start. Issue: LCMFT-338 for unprivileged lxc containers, proc and sys should be mounted with relatime Signed-off-by: Matthias FRANCK <matthias.franck@softathome.com>