diff options
author | NeilBrown <neilb@suse.de> | 2010-02-01 00:37:58 +0100 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2010-02-01 00:37:58 +0100 |
commit | cc86f89c855fcfe9820d0621ede1575adc317155 (patch) | |
tree | 06fcb58fa365bab95cc9c812854d068fadfe4ba3 | |
parent | Add test for "are we running as root". (diff) | |
download | mdadm-cc86f89c855fcfe9820d0621ede1575adc317155.tar.xz mdadm-cc86f89c855fcfe9820d0621ede1575adc317155.zip |
Create: Improve warning message about booting from v1.x
Suggesting that if your boot loaded doesn't support v1.x, then use
--metadata=1.0
doesn't make a lot of sense.
Also, '/', isn't really important, it is /boot that matters.
Hopefully people who have /boot on '/' realise that /boot is
on '/' ....
Signed-off-by: NeilBrown <neilb@suse.de>
-rw-r--r-- | Create.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -393,9 +393,9 @@ int Create(struct supertype *st, char *mddev, warn |= 1024; fprintf(stderr, Name ": Note: this array has metadata at the start and\n" " may not be suitable as a boot device. If you plan to\n" - " store '/' or '/boot' on this device please ensure that\n" + " store '/boot' on this device please ensure that\n" " your boot-loader understands md/v1.x metadata, or use\n" - " --metadata=1.0\n"); + " --metadata=0.90\n"); } close(fd); } |