diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-02-19 22:25:00 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-02-19 22:25:00 +0000 |
commit | a2d779eb8db8315ba3aebe259f2c0754374c48e0 (patch) | |
tree | fd3162cb945ecef914b3df93c5b159855b7d3aa7 /loader2/hdinstall.c | |
parent | 3e1620d5ee76c44eba33191d6cde3a2bd29e4905 (diff) | |
download | anaconda-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
Diffstat (limited to 'loader2/hdinstall.c')
-rw-r--r-- | loader2/hdinstall.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |