diff options
author | Gaudenz Steinlin <gaudenz@debian.org> | 2015-04-02 17:27:08 +0200 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-04-02 19:57:53 +0200 |
commit | db25153a257eda7e396f89b522b2f68ae3f21ddd (patch) | |
tree | ea7abc5b1075e740e2149e097aeb6d4375eb99c2 | |
parent | 73d837abfd95add4e0792ef27df8c7eea8a7388f (diff) | |
download | live-boot-db25153a257eda7e396f89b522b2f68ae3f21ddd.tar.gz live-boot-db25153a257eda7e396f89b522b2f68ae3f21ddd.zip |
Modprobe filesystem modules before checking support.
This bug was accidentially introduced in commit ec9bd07c which removed
unionfs-fuse support.
-rwxr-xr-x | components/9990-overlay.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/9990-overlay.sh b/components/9990-overlay.sh index 92d0355..9282276 100755 --- a/components/9990-overlay.sh +++ b/components/9990-overlay.sh @@ -8,13 +8,13 @@ setup_unionfs () rootmnt="${2}" addimage_directory="${3}" + modprobe -q -b ${UNIONTYPE} + if ! cut -f2 /proc/filesystems | grep -q "^${UNIONTYPE}\$" then panic "${UNIONTYPE} not available." fi - modprobe -q -b ${UNIONTYPE} - # run-init can't deal with images in a subdir, but we're going to # move all of these away before it runs anyway. No, we're not, # put them in / since move-mounting them into / breaks mono and |