disable broken mounts, for now

This commit is contained in:
Ryan Heywood 2025-07-11 19:02:50 -04:00
parent 46b1ab1dd8
commit 9ab33ecadc
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 4 additions and 2 deletions

View File

@ -30,9 +30,10 @@ fn init_rootfs() {
let no_se = MS_NOSUID | MS_NOEXEC;
let args = [
("devtmpfs", "/dev", "devtmpfs", no_se, "mode=0755"),
("devtmpfs", "/dev", "devtmpfs", no_se, "mode=0755"),
/*
("devpts", "/dev/pts", "devpts", no_se, ""),
("shm", "/dev/shm", "tmpfs", no_dse, "mode=0755"),
*/
("proc", "/proc", "proc", no_dse, "hidepid=2"),
("tmpfs", "/run", "tmpfs", no_dse, "mode=0755"),
("tmpfs", "/tmp", "tmpfs", no_dse, ""),
@ -59,9 +60,10 @@ fn init() -> Result<()> {
init_rootfs();
platform::aws::Aws.init().unwrap();
init_console()?;
platform::aws::Aws.init().unwrap();
std::thread::sleep(std::time::Duration::from_secs(500));
/*