Skip to content

Commit a63a53f

Browse files
committed
amiberry - add support for building with 64bit on rpi
1 parent f330a89 commit a63a53f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scriptmodules/emulators/amiberry.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rp_module_help="ROM Extension: .adf .chd .ipf .lha .zip\n\nCopy your Amiga games
1515
rp_module_licence="GPL3 https://raw.githubusercontent.com/midwan/amiberry/master/COPYING"
1616
rp_module_repo="git https://github.com/midwan/amiberry v5.1"
1717
rp_module_section="opt"
18-
rp_module_flags="!all arm"
18+
rp_module_flags="!all arm rpi3 rpi4"
1919

2020
function _update_hook_amiberry() {
2121
local rom
@@ -29,7 +29,9 @@ function _update_hook_amiberry() {
2929

3030
function _get_platform_amiberry() {
3131
local platform="$__platform-sdl2"
32-
if isPlatform "dispmanx"; then
32+
if isPlatform "aarch64" && isPlatform "rpi"; then
33+
platform="$__platform-64-sdl2"
34+
elif isPlatform "dispmanx"; then
3335
platform="$__platform"
3436
elif isPlatform "odroid-xu"; then
3537
platform="xu4"

0 commit comments

Comments
 (0)