Remove the mount config for tmp dir

This commit is contained in:
LI Qing 2021-08-03 11:57:57 +08:00 committed by Zongmin.Gu
parent 215e8ffbdf
commit 42bed8d338
6 changed files with 1 additions and 34 deletions

@ -156,14 +156,6 @@ Occlum can be configured easily via a configuration file named `Occlum.json`, wh
"type": "hostfs", "type": "hostfs",
"source": "." "source": "."
}, },
{
"target": "/tmp",
"type": "sefs",
"source": "./run/mount/tmp",
"options": {
"temporary": true
}
},
{ {
"target": "/proc", "target": "/proc",
"type": "procfs" "type": "procfs"

@ -53,14 +53,6 @@
"type": "hostfs", "type": "hostfs",
"source": "." "source": "."
}, },
{
"target": "/tmp",
"type": "sefs",
"source": "./run/mount/tmp",
"options": {
"temporary": true
}
},
{ {
"target": "/proc", "target": "/proc",
"type": "procfs" "type": "procfs"

2
deps/sefs vendored

@ -1 +1 @@
Subproject commit c87fc408666e66d34e2b7fa12be6a000e2d5bc0c Subproject commit 41484829326a6bcbd92343f7c1bdcf4acf5a56f4

@ -53,14 +53,6 @@
"type": "hostfs", "type": "hostfs",
"source": "." "source": "."
}, },
{
"target": "/tmp",
"type": "sefs",
"source": "./run/mount/tmp",
"options": {
"temporary": true
}
},
{ {
"target": "/proc", "target": "/proc",
"type": "procfs" "type": "procfs"

@ -56,14 +56,6 @@
"type": "hostfs", "type": "hostfs",
"source": "." "source": "."
}, },
{
"target": "/tmp",
"type": "sefs",
"source": "./run/mount/tmp",
"options": {
"temporary": true
}
},
{ {
"target": "/proc", "target": "/proc",
"type": "procfs" "type": "procfs"

@ -304,7 +304,6 @@ cmd_build() {
fi fi
mkdir -p "$instance_dir/run/mount/__ROOT" mkdir -p "$instance_dir/run/mount/__ROOT"
mkdir -p "$instance_dir/run/mount/tmp"
mkdir -p "$instance_dir/run/initfs/__ROOT" mkdir -p "$instance_dir/run/initfs/__ROOT"