Skip to content

Documentation update - MBRBlockDevice::partition type parameter #13019

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

Merged
merged 1 commit into from
Jun 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions features/storage/blockdevice/MBRBlockDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ class MBRBlockDevice : public BlockDevice {
*
* @param bd Block device to partition
* @param part Partition to use, 1-4
* @param type 8-bit partition type to identify partition contents
* @param type 8-bit partition type to specify the filesystem to use in this partition.
* It can be found in the filesystem documentation or refer to
* https://en.wikipedia.org/wiki/Partition_type#List_of_partition_IDs
* @param start Start block address to map to block 0 of partition.
* Negative addresses are calculated from the end of the
* underlying block devices. Block 0 is implicitly ignored
Expand All @@ -66,7 +68,9 @@ class MBRBlockDevice : public BlockDevice {
*
* @param bd Block device to partition
* @param part Partition to use, 1-4
* @param type 8-bit partition type to identify partition contents
* @param type 8-bit partition type to specify the filesystem to use in this partition.
* It can be found in the filesystem documentation or refer to
* https://en.wikipedia.org/wiki/Partition_type#List_of_partition_IDs
* @param start Start block address to map to block 0 of partition,
* negative addresses are calculated from the end of the
* underlying block devices. Block 0 is implicitly ignored
Expand Down