diff --git a/disk.c b/disk.c index 7009e7b..7d09cca 100644 --- a/disk.c +++ b/disk.c @@ -246,11 +246,12 @@ static enum return_type try_with_partition(char *choice) strcat(device_fullname, choice); if (my_mount(device_fullname, IMAGE_LOCATION, "ext2", 0) == -1 && + my_mount(device_fullname, IMAGE_LOCATION, "ext3", 0) == -1 && my_mount(device_fullname, IMAGE_LOCATION, "vfat", 0) == -1 && my_mount(device_fullname, IMAGE_LOCATION, "ntfs", 0) == -1 && my_mount(device_fullname, IMAGE_LOCATION, "iso9660", 0) == -1 && my_mount(device_fullname, IMAGE_LOCATION, "reiserfs", 0) == -1) { - stg1_error_message("I can't find a valid filesystem (tried: ext2, vfat, ntfs, iso9660, reiserfs)."); + stg1_error_message("I can't find a valid filesystem (tried: ext2, ext3, vfat, ntfs, iso9660, reiserfs)."); return RETURN_ERROR; } diff --git a/propagator.spec b/propagator.spec index c36d229..e41b547 100644 --- a/propagator.spec +++ b/propagator.spec @@ -3,7 +3,7 @@ Name: propagator Version: 20090301 -Release: alt10 +Release: alt11 Summary: 'Early userspace' set of binaries License: GPL @@ -39,6 +39,9 @@ make %{?_with_shell:WITH_SHELL=t} %{?_with_splash:WITH_SPLASH=t} libdir=%_libdir %_libdir/%name %changelog +* Fri Sep 24 2010 Mykola Grechukh 20090301-alt11 +- ext3 added + * Thu Jul 1 2010 Sergey Bolshakov 20090301-alt10 - ensure that /lib/firmware exists in resulting initramfs image