-
Notifications
You must be signed in to change notification settings - Fork 81
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
Adds support for Azure Linux 3 #51
Open
simongdavies
wants to merge
25
commits into
hyperlight-dev:main
Choose a base branch
from
simongdavies:az-linux-3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+205
−65
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
simongdavies
force-pushed
the
az-linux-3
branch
from
November 11, 2024 23:14
b826b9a
to
10f950f
Compare
simongdavies
force-pushed
the
az-linux-3
branch
from
November 13, 2024 19:53
e41bdc7
to
84f4d74
Compare
simongdavies
force-pushed
the
az-linux-3
branch
from
November 14, 2024 08:57
84f4d74
to
dc87cc0
Compare
marosset
reviewed
Jan 9, 2025
Signed-off-by: Simon Davies <[email protected]>
Since clippy runs with --all-features and the mshv2 and mshv3 features are mutually exclusive these changes ensure that clippy is able to run and we can still enforce mutually exclusivity Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
Signed-off-by: Simon Davies <[email protected]>
simongdavies
force-pushed
the
az-linux-3
branch
from
January 13, 2025 15:32
a7aa437
to
42a65a7
Compare
Signed-off-by: Simon Davies <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds support for Azure Linux 3.
Because there are breaking changes between version 2 and verrion 3 of the
mshv-bindings
andmshv-ioctls
and version 2 is required for Azure Linux version 2 and version 3 is required for Azure Linux version 3, this change also includes feature flags to allow the user to specify which version of mshv to target.This defaults to mshv2 (Azure Linux 2), to target Azure Linux 3 enable the
mshv3
feature, there is no need to disable the mshv2 feature in this case.We need to add some runners for Az Linux 3 to our CI, and then enable the feature flag when we run on those but that will be done in a separate PR