| Index: postinstall_runner_action.cc
|
| diff --git a/postinstall_runner_action.cc b/postinstall_runner_action.cc
|
| index c6320e1fe9b7c75fcc9385e43c27d320e61ab821..80c28c955b73793a78e77516eb8fe17f9eb0e254 100644
|
| --- a/postinstall_runner_action.cc
|
| +++ b/postinstall_runner_action.cc
|
| @@ -32,11 +32,11 @@ void PostinstallRunnerAction::PerformAction() {
|
| unsigned long mountflags = MS_RDONLY;
|
| int rc = mount(install_device.c_str(),
|
| temp_rootfs_dir_.c_str(),
|
| - "ext4",
|
| + "ext2",
|
| mountflags,
|
| NULL);
|
| if (rc < 0) {
|
| - LOG(INFO) << "Failed to mount install part as ext4. Trying ext3.";
|
| + LOG(INFO) << "Failed to mount install part as ext2. Trying ext3.";
|
| rc = mount(install_device.c_str(),
|
| temp_rootfs_dir_.c_str(),
|
| "ext3",
|
|
|