diff options
-rw-r--r-- | util-linux/switch_root.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c index 16abcb634..080b05e45 100644 --- a/util-linux/switch_root.c +++ b/util-linux/switch_root.c | |||
@@ -227,9 +227,12 @@ int switch_root_main(int argc UNUSED_PARAM, char **argv) | |||
227 | xstat("/", &st); | 227 | xstat("/", &st); |
228 | rootdev = st.st_dev; | 228 | rootdev = st.st_dev; |
229 | xstat(".", &st); | 229 | xstat(".", &st); |
230 | if (st.st_dev == rootdev || getpid() != 1) { | 230 | if (st.st_dev == rootdev) { |
231 | // Show usage, it says new root must be a mountpoint | 231 | // Show usage, it says new root must be a mountpoint |
232 | // and we must be PID 1 | 232 | bb_show_usage(); |
233 | } | ||
234 | if (!dry_run && getpid() != 1) { | ||
235 | // Show usage, it says we must be PID 1 | ||
233 | bb_show_usage(); | 236 | bb_show_usage(); |
234 | } | 237 | } |
235 | 238 | ||