diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-03-19 04:33:01 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-03-19 04:33:01 -0500 |
commit | 4bb29bd72adfaf985194618d3a66545d0154c373 (patch) | |
tree | 365082dd4cf9d84fe808d5c09c17dc32220d4697 | |
parent | f04b3f589d7800653b9fb3ad08131f4edd2e2828 (diff) | |
download | horizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.gz horizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.bz2 horizon-4bb29bd72adfaf985194618d3a66545d0154c373.tar.xz horizon-4bb29bd72adfaf985194618d3a66545d0154c373.zip |
hscript: Support creation of MBR disklabels
-rw-r--r-- | hscript/disk.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hscript/disk.cc b/hscript/disk.cc index a23c8f5..30884d6 100644 --- a/hscript/disk.cc +++ b/hscript/disk.cc @@ -210,7 +210,7 @@ bool DiskLabel::execute() const { type_str = "apm"; break; case MBR: - type_str = "mbr"; + type_str = "msdos"; break; case GPT: type_str = "gpt"; |