From a5f8ef486ab458b036a0bbb33bbdcce114c066ed Mon Sep 17 00:00:00 2001 From: Marc Date: Tue, 15 Feb 2022 12:29:16 +0100 Subject: [PATCH] changement des flages de montage des fs systemes --- rootfs overrides/etc/init.d/filesystem.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs overrides/etc/init.d/filesystem.js b/rootfs overrides/etc/init.d/filesystem.js index 92a8fe8..656520c 100644 --- a/rootfs overrides/etc/init.d/filesystem.js +++ b/rootfs overrides/etc/init.d/filesystem.js @@ -3,10 +3,10 @@ const { cmount, mount, flags } = require('../../chibrax/mount.js') async function init() { cmount("dummy", "/proc", "proc", - flags.MS_NODEV | flags.MS_RDONLY | flags.MS_NOSUID | flags.MS_RELATIME + flags.MS_NODEV | flags.MS_RDONLY | flags.MS_NOSUID | flags.MS_RELATIME | flags.MS_NOEXEC , "") - mount("dummy", "/sys", "sysfs", flags.MS_NODEV | flags.MS_NOSUID | flags.MS_RELATIME, "") + mount("dummy", "/sys", "sysfs", flags.MS_NODEV | flags.MS_NOSUID | flags.MS_RELATIME | flags.MS_NOEXEC, "") mount("dummy", "/tmp", "tmpfs", flags.MS_NODEV, "") }