-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add support for SDX 8900 platform #181
base: release/xs8
Are you sure you want to change the base?
Changes from 1 commit
8854c63
6bb5480
9ef4f02
e7b653e
b7886fb
354ff97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -940,6 +940,7 @@ class GPTPartitionTool(PartitionToolBase): | |
# These are partition type GUIDs | ||
ID_LINUX_SWAP = "0657FD6D-A4AB-43C4-84E5-0933C84B4F4F" | ||
ID_LINUX = "EBD0A0A2-B9E5-4433-87C0-68B6B72699C7" | ||
ID_LINUX2 = "0FC63DAF-8483-4772-8E79-3D69D8477DE4" | ||
ID_LINUX_LVM = "E6D6D379-F507-44C2-A23C-238F2A3DF928" | ||
ID_EFI_BOOT = "C12A7328-F81F-11D2-BA4B-00A0C93EC93B" | ||
ID_BIOS_BOOT = "21686148-6449-6E6F-744E-656564454649" | ||
|
@@ -948,6 +949,7 @@ class GPTPartitionTool(PartitionToolBase): | |
GUID_to_type_code = { | ||
ID_LINUX_SWAP: '8200', | ||
ID_LINUX: '0700', | ||
ID_LINUX2: '0700', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, but we want to end up with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rather than calling this 0x700 == (Although it is still not clear to me why this new constant is needed.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We are using |
||
ID_LINUX_LVM: '8e00', | ||
ID_EFI_BOOT: 'ef00', | ||
ID_BIOS_BOOT: 'ef02', | ||
|
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.
In what cases would the host-installer need to handle a partition of this type?
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.
When you load the MBR using GPT tool for doing the conversion, it's the type
gdisk
will use.