summaryrefslogtreecommitdiffstats
path: root/crates/runner/src/paths.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/runner/src/paths.rs')
-rw-r--r--crates/runner/src/paths.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/runner/src/paths.rs b/crates/runner/src/paths.rs
index 5bfef25..e436948 100644
--- a/crates/runner/src/paths.rs
+++ b/crates/runner/src/paths.rs
@@ -31,8 +31,6 @@
//!    └── <input hash>/
//! ├── build/ # mount point for /build directory
//! │ ├── downloads/ # downloaded sources
-//! │ ├── dest/ # collected as output after build
-//! │ ├── sysroot/ # sysroot mountpoint
//! │ ├── task/ # internal runner files
//! │ └── work/ # build overlay mountpoint
//! ├── rootfs/ # rootfs overlay mountpoint
@@ -61,11 +59,9 @@ pub const TASK_STATE_LAYER_SUBDIR: &str = "layer";
pub const TASK_STATE_WORK_SUBDIR: &str = "work";
pub const TASK_BUILDDIR: &str = "build";
-pub const TASK_DESTDIR: &str = "build/dest";
pub const TASK_DLDIR: &str = "build/downloads";
pub const TASK_TASKDIR: &str = "build/task";
pub const TASK_WORKDIR: &str = "build/work";
-pub const TASK_SYSROOT: &str = "opt/toolchain/sysroot";
pub const TASK_RUN: &str = "run";