mirror of
https://git.proxmox.com/git/efi-boot-shim
synced 2025-08-16 10:48:53 +00:00
Fix apparent typo in ARM 32-on-64 code
The architecture is aarch64, not arch64.
Fixes: 750584c207
("Make 64-on-32 maybe work on x86_64.")
Signed-off-by: dann frazier <dann.frazier@canonical.com>
Upstream-commit-id: e9f67aaa75a
This commit is contained in:
parent
3d04aef8d8
commit
d5b72b322d
2
shim.c
2
shim.c
@ -150,7 +150,7 @@ allow_32_bit(void)
|
|||||||
#endif
|
#endif
|
||||||
#elif defined(__i386__) || defined(__i686__)
|
#elif defined(__i386__) || defined(__i686__)
|
||||||
return 1;
|
return 1;
|
||||||
#elif defined(__arch64__)
|
#elif defined(__aarch64__)
|
||||||
return 0;
|
return 0;
|
||||||
#else /* assuming everything else is 32-bit... */
|
#else /* assuming everything else is 32-bit... */
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user