Skip to content
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

feat(windows): Add support for booting Windows on arm64 #1542

Open
wants to merge 4 commits into
base: development
Choose a base branch
from

Conversation

ashlcx
Copy link

@ashlcx ashlcx commented Nov 23, 2024

Adds support for booting Windows on arm64 using wimboot.arm64

  • add windows to arm64 boot menu
  • add wimboot.arm64 to menus
  • add arm64 arch in windows arch select
  • adds conditional for kernel

@@ -19,7 +19,7 @@ choose win_version || goto windows_exit
goto ${win_version}

:arch_set
iseq ${win_arch} x64 && set win_arch x86 || set win_arch x64
iseq ${win_arch} x64 && set win_arch x86 && set win_arch arm64 || set win_arch x64
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This logic may not work well, as it's flipping between x86 and arm64, so x86 will probably never get set.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah good point, I'll add in automatic arch detection and a seperate menu as well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants