You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/functions/host/mountpoints.sh
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ function prepare_armbian_mountpoints_description_dict() {
17
17
"cache"
18
18
"cache/git-bare"
19
19
"cache/git-bundles"
20
-
"cache/toolchain"
21
20
"cache/aptcache"
22
21
"cache/rootfs"
23
22
"cache/initrd"
@@ -38,7 +37,6 @@ function prepare_armbian_mountpoints_description_dict() {
38
37
["cache"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# catch-all cache, could be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
39
38
["cache/git-bare"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# Git bare repos (kernel/u-boot). On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
40
39
["cache/git-bundles"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# Downloads of git bundles, can be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
41
-
["cache/toolchain"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# toolchain cache, can be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
42
40
["cache/aptcache"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# .deb apt cache, replaces apt-cacher-ng. Can be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
43
41
["cache/rootfs"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# rootfs .tar.zst cache, can be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
44
42
["cache/initrd"]="docker_kind_linux=bind docker_kind_darwin=namedvolume"# initrd.img cache, can be bind-mounted or a volume. On Darwin it's too slow to bind-mount, so it's a volume by default. On Linux, it's a bind-mount by default.
0 commit comments