summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-01-03 15:39:12 +0000
committerMatt Wilson <msw@redhat.com>2000-01-03 15:39:12 +0000
commitf7798d5b4ad51ac0f54d4764f960d50fd8d0a20d (patch)
tree2c8bdbed4a0b8181f36c9c824378609d32846e71 /loader
parent22ca4ff37438cd454afd1885eb4b75c34bff0658 (diff)
downloadanaconda-f7798d5b4ad51ac0f54d4764f960d50fd8d0a20d.tar.gz
anaconda-f7798d5b4ad51ac0f54d4764f960d50fd8d0a20d.tar.xz
anaconda-f7798d5b4ad51ac0f54d4764f960d50fd8d0a20d.zip
load vfat module for loopback install magic
Diffstat (limited to 'loader')
-rw-r--r--loader/loader.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/loader/loader.c b/loader/loader.c
index ff59d9d03..8a4097e76 100644
--- a/loader/loader.c
+++ b/loader/loader.c
@@ -2023,6 +2023,11 @@ int main(int argc, char ** argv) {
mlLoadModule("raid1", NULL, modLoaded, modDeps, NULL, flags);
mlLoadModule("raid5", NULL, modLoaded, modDeps, NULL, flags);
+ #ifdef __i386__
+ /* We need this for loopback installs */
+ mlLoadModule("vfat", NULL, modLoaded, modDeps, NULL, flags);
+ #endif
+
stopNewt();
closeLog();