summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-02-19 22:25:00 +0000
committerJeremy Katz <katzj@redhat.com>2006-02-19 22:25:00 +0000
commita2d779eb8db8315ba3aebe259f2c0754374c48e0 (patch)
treefd3162cb945ecef914b3df93c5b159855b7d3aa7
parent3e1620d5ee76c44eba33191d6cde3a2bd29e4905 (diff)
downloadanaconda-a2d779eb8db8315ba3aebe259f2c0754374c48e0.tar.gz
anaconda-a2d779eb8db8315ba3aebe259f2c0754374c48e0.tar.xz
anaconda-a2d779eb8db8315ba3aebe259f2c0754374c48e0.zip
2006-02-19 Jeremy Katz <katzj@redhat.com>
* loader2/hdinstall.c: Try to mount as ext3 also now that we have the module
-rw-r--r--ChangeLog5
-rw-r--r--loader2/hdinstall.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 570c55dc3..3bc7fee55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-19 Jeremy Katz <katzj@redhat.com>
+
+ * loader2/hdinstall.c: Try to mount as ext3 also now that we have
+ the module
+
2006-02-17 Paul Nasrat <pnasrat@redhat.com>
* kickstart.py, yuminstall.py: Sanity check unknown packages & groups
diff --git a/loader2/hdinstall.c b/loader2/hdinstall.c
index 31a3a129b..1f3118778 100644
--- a/loader2/hdinstall.c
+++ b/loader2/hdinstall.c
@@ -174,7 +174,7 @@ static char * setupIsoImages(char * device, char * dirName, int flags) {
char * url;
char filespec[1024];
char * path;
- char *typetry[] = {"ext2", "vfat", NULL};
+ char *typetry[] = {"ext3", "ext2", "vfat", NULL};
char **type;
logMessage(INFO, "mounting device %s for hard drive install", device);