1
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-11-25 08:26:18 +00:00
Lakka-LibreELEC/projects/RPi/devices/RPi2/options
Matthias Reichl 89773fba87 RPi: move CPU settings from project to devices and add aarch64 settings for RPi4
Signed-off-by: Matthias Reichl <hias@horus.com>
2023-02-24 22:13:12 +00:00

23 lines
630 B
Plaintext

################################################################################
# Device defaults
################################################################################
# The TARGET_CPU variable controls which processor should be targeted for
# generated code.
case $TARGET_ARCH in
arm)
TARGET_CPU="cortex-a7"
TARGET_FPU="neon-vfpv4"
TARGET_FLOAT="hard"
;;
esac
# NOOBS supported hex versions (legacy)
NOOBS_HEX="1040,1041,2082"
# NOOBS supported model versions
NOOBS_SUPPORTED_MODELS='"Pi 2","Pi 3"'
# set the addon project
ADDON_PROJECT="ARMv7"