From a2d779eb8db8315ba3aebe259f2c0754374c48e0 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Sun, 19 Feb 2006 22:25:00 +0000 Subject: 2006-02-19 Jeremy Katz * loader2/hdinstall.c: Try to mount as ext3 also now that we have the module --- ChangeLog | 5 +++++ loader2/hdinstall.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 570c55dc3..3bc7fee55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-19 Jeremy Katz + + * loader2/hdinstall.c: Try to mount as ext3 also now that we have + the module + 2006-02-17 Paul Nasrat * 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); -- cgit