X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ffsck%2Ffsck.c;h=f5d38ad261192dccd59355144fecf54655ac714e;hb=cae0c5e042c04b33b93a6a9af355f7304f75a45c;hp=058f34d64fdc12b83557fc9f14800ab90db34a6a;hpb=0d0f0c50d3a1d90f03972a6abb82e6413daaa583;p=elogind.git diff --git a/src/fsck/fsck.c b/src/fsck/fsck.c index 058f34d64..f5d38ad26 100644 --- a/src/fsck/fsck.c +++ b/src/fsck/fsck.c @@ -128,11 +128,14 @@ static int parse_proc_cmdline(void) { arg_skip = true; else if (startswith(w, "fsck")) log_warning("Invalid fsck parameter. Ignoring."); -#if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA) - else if (strneq(w, "fastboot", l)) +#ifdef HAVE_SYSV_COMPAT + else if (strneq(w, "fastboot", l)) { + log_error("Please pass 'fsck.mode=skip' rather than 'fastboot' on the kernel command line."); arg_skip = true; - else if (strneq(w, "forcefsck", l)) + } else if (strneq(w, "forcefsck", l)) { + log_error("Please pass 'fsck.mode=force' rather than 'forcefsck' on the kernel command line."); arg_force = true; + } #endif } @@ -141,11 +144,17 @@ static int parse_proc_cmdline(void) { } static void test_files(void) { - if (access("/fastboot", F_OK) >= 0) +#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) + 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 if (access("/run/systemd/show-status", F_OK) >= 0 || plymouth_running()) arg_show_progress = true;