mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 08:26:18 +00:00
89773fba87
Signed-off-by: Matthias Reichl <hias@horus.com>
23 lines
630 B
Plaintext
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"
|