diff options
author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2017-01-28 02:22:15 +0000 |
---|---|---|
committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2017-01-28 02:22:15 +0000 |
commit | 2b375b4edd1b98884c3031d6ccd61acb10bd895d (patch) | |
tree | f35e4f57ad890ac86d5cb5d3ef760344a41fc0e6 /sbin/bsdlabel/bsdlabel.c | |
parent | 34bac11eba2841255bf6319ec78728f0f941c6ac (diff) | |
download | src-2b375b4edd1b98884c3031d6ccd61acb10bd895d.tar.gz src-2b375b4edd1b98884c3031d6ccd61acb10bd895d.zip |
Remove pc98 support completely.
I thank all developers and contributors for pc98.
Relnotes: yes
Notes
Notes:
svn path=/head/; revision=312910
Diffstat (limited to 'sbin/bsdlabel/bsdlabel.c')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 072c4cfa0884..83df67ae0fe3 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -164,8 +164,7 @@ main(int argc, char *argv[]) break; case 'm': if (!strcmp(optarg, "i386") || - !strcmp(optarg, "amd64") || - !strcmp(optarg, "pc98")) { + !strcmp(optarg, "amd64")) { labelsoffset = 1; labeloffset = 0; bbsize = 8192; |