From 1de33f5e3307d7ef65c63664aca40b87603cfb8f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:50:17 +0200 Subject: [PATCH] Try squashfs support https://github.com/alexbelgium/hassio-addons/issues/1008 --- .templates/00-local_mounts.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.templates/00-local_mounts.sh b/.templates/00-local_mounts.sh index 50e740df9..516f831a1 100755 --- a/.templates/00-local_mounts.sh +++ b/.templates/00-local_mounts.sh @@ -70,6 +70,11 @@ if bashio::config.has_value 'localdisks'; then options="${options},umask=000" type="ntfs" ;; + squashfs) + bashio::log.warning "${fstype} is an EXPERIMENTAL support" + options="loop" + type="squashfs" + ;; esac # Legacy mounting : mount to share if still exists (avoid breaking changes)