summaryrefslogtreecommitdiffstats
path: root/liveinst
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-03-28 20:58:11 +0000
committerJeremy Katz <katzj@redhat.com>2007-03-28 20:58:11 +0000
commit723970d6f19eb69d7424b9eae3b8f53fdeea4f2b (patch)
treeb177416f43db5405dd58703c83364f276e90c1ca /liveinst
parenta6cfff898c3277babcc1b61be6cb9c5f8117a2ea (diff)
downloadanaconda-723970d6f19eb69d7424b9eae3b8f53fdeea4f2b.tar.gz
anaconda-723970d6f19eb69d7424b9eae3b8f53fdeea4f2b.tar.xz
anaconda-723970d6f19eb69d7424b9eae3b8f53fdeea4f2b.zip
2007-03-28 Jeremy Katz <katzj@redhat.com>
* liveinst/liveinst.sh: Load modules so that we can do filesystem stuff, etc (#230945)
Diffstat (limited to 'liveinst')
-rw-r--r--liveinst/liveinst.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/liveinst/liveinst.sh b/liveinst/liveinst.sh
index d98826106..e47880ac0 100644
--- a/liveinst/liveinst.sh
+++ b/liveinst/liveinst.sh
@@ -11,6 +11,9 @@ if [ ! -f /.livecd-configured ]; then
zenity --error --title="Not a Live image" --text "Can't do live image installation unless running from a live image"
fi
+# load modules that would get loaded by the loader... (#230945)
+for i in md raid0 raid1 raid5 raid6 raid456 raid10 fat msdos lock_nolock gfs2 reiserfs jfs xfs dm-mod dm-zero dm-mirror dm-snapshot dm-multipath dm-round-robin dm-emc vfat ; do /sbin/modprobe $i ; done
+
export ANACONDA_PRODUCTNAME="Fedora"
export ANACONDA_PRODUCTVERSION=$(rpm -q fedora-release --qf "%{VERSION}")
export ANACONDA_BUGURL="https://bugzilla.redhat.com/bugzilla/"