diff options
Diffstat (limited to 'src/fsck/fsck.c')
-rw-r--r-- | src/fsck/fsck.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 7eaf902e75..d0316b3afd 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -100,34 +100,11 @@ static int parse_proc_cmdline_item(const char *key, const char *value) { log_warning("Invalid fsck.repair= parameter '%s'. Ignoring.", value); } -#ifdef HAVE_SYSV_COMPAT - else if (streq(key, "fastboot") && !value) { - log_warning("Please pass 'fsck.mode=skip' rather than 'fastboot' on the kernel command line."); - arg_skip = true; - - } else if (streq(key, "forcefsck") && !value) { - log_warning("Please pass 'fsck.mode=force' rather than 'forcefsck' on the kernel command line."); - arg_force = true; - } -#endif - return 0; } static void test_files(void) { -#ifdef HAVE_SYSV_COMPAT - if (access("/fastboot", F_OK) >= 0) { - log_error("Please pass 'fsck.mode=skip' on the kernel command line rather than creating /fastboot on the root file system."); - arg_skip = true; - } - - if (access("/forcefsck", F_OK) >= 0) { - log_error("Please pass 'fsck.mode=force' on the kernel command line rather than creating /forcefsck on the root file system."); - arg_force = true; - } -#endif - } static int process_progress(int fd, pid_t fsck_pid, dev_t device_num) { |