mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 21:56:19 +00:00
388bfe4440
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
27 lines
662 B
Plaintext
27 lines
662 B
Plaintext
################################################################################
|
|
# setup device defaults
|
|
################################################################################
|
|
|
|
# The TARGET_CPU variable controls which processor should be targeted for
|
|
# generated code.
|
|
case $TARGET_ARCH in
|
|
arm)
|
|
TARGET_CPU="cortex-a9"
|
|
TARGET_FLOAT="hard"
|
|
TARGET_FPU="neon-vfpv3"
|
|
;;
|
|
esac
|
|
|
|
# Kernel target
|
|
KERNEL_TARGET="zImage"
|
|
|
|
# kernel serial console
|
|
EXTRA_CMDLINE="console=ttymxc0,115200 console=tty0"
|
|
|
|
# debug tty path
|
|
DEBUG_TTY="/dev/ttymxc0"
|
|
|
|
# set the addon project
|
|
ADDON_PROJECT="ARMv7"
|
|
|