-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
disk: define PartitionTableType enum for partition table types #1004
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Needs to be rebased on #1002. |
Add a new enum, PartitionTableType, for referring to the two partition table types, "dos" and "gpt". This is currently not used but will be part of the new custom partition table generator.
7abc7e4
to
78d183f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know you will laugh at me but I would fove a tiny test but otherwise this is fine.
No no, it's my fault. I should have known and done it already. |
6354e01
to
3cde601
Compare
Added TWO! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is very nice, one tiny suggestion inline still (sorry!)
3cde601
to
831d4a4
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Merging this because I'm going to need it for #1009. |
Actually didn't end up depending. I was thinking of using the new enums in the PartitionTable but it's a bigger change that I'd rather do in a separate PR. |
This is part of #926 which I'm slowly splitting into smaller, bite-sized PRs.
Add a new enum, PartitionTableType, for referring to the two partition table types, "dos" and "gpt".
This is currently not used but will be part of the new custom partition table generator.