mirror of
https://github.com/dockur/windows.git
synced 2025-10-27 03:15:49 +00:00
feat: Download older Windows 11 build on ARMv8.0
This commit is contained in:
parent
b21265ebf0
commit
d4171ecfda
1 changed files with 2 additions and 4 deletions
|
|
@ -403,13 +403,11 @@ getCatalog() {
|
|||
local edition=""
|
||||
local file="catalog.cab"
|
||||
|
||||
if [[ "${PLATFORM,,}" == "arm64" && "${ARCH,,}" == "arm64" ]];
|
||||
|
||||
# ARMv8.0 and lower cannot run Windows 11 builds higher than 22631
|
||||
if [[ "${id,,}" == "win11"* && "${PLATFORM,,}" != "x64" && "${ARCH,,}" == "arm64" ]];
|
||||
# ARMv8.0 cannot run Windows 11 builds higher than 22631
|
||||
if ! grep -qw 'Features.*atomics' /proc/cpuinfo; then
|
||||
echo $(getBuild "$1" "$2" "22631.2861") && return 0
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
case "${id,,}" in
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue