summaryrefslogtreecommitdiffstats
path: root/sbin/bsdlabel/bsdlabel.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/bsdlabel/bsdlabel.c')
-rw-r--r--sbin/bsdlabel/bsdlabel.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c
index 34ccc88..2ac39eb 100644
--- a/sbin/bsdlabel/bsdlabel.c
+++ b/sbin/bsdlabel/bsdlabel.c
@@ -161,12 +161,10 @@ main(int argc, char *argv[])
xxboot = optarg;
break;
case 'm':
- if (!strcmp(optarg, "i386")) {
- labelsoffset = 1;
- labeloffset = 0;
- bbsize = 8192;
- alphacksum = 0;
- } else if (!strcmp(optarg, "pc98")) {
+ if (!strcmp(optarg, "i386") ||
+ !strcmp(optarg, "amd64") ||
+ !strcmp(optarg, "ia64") ||
+ !strcmp(optarg, "pc98")) {
labelsoffset = 1;
labeloffset = 0;
bbsize = 8192;
@@ -176,11 +174,6 @@ main(int argc, char *argv[])
labeloffset = 64;
bbsize = 8192;
alphacksum = 1;
- } else if (!strcmp(optarg, "ia64")) {
- labelsoffset = 1;
- labeloffset = 0;
- bbsize = 8192;
- alphacksum = 0;
} else {
errx(1, "Unsupported architecture");
}
OpenPOWER on IntegriCloud