1
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2024-11-24 05:36:17 +00:00
Lakka-LibreELEC/projects/Ayn/options
GavinDarkglider 4f8d2a57e9
WIP - Add Support for Ayn Odin (#1713)
* Initial fully buildable/bootable Odin Support

* Rework NX-Boot to FAT32 Boot for shared usage between switch and odin

* Move shared packages from switch/odin to main packages folder
2023-01-21 16:11:38 +01:00

44 lines
1.4 KiB
Plaintext

################################################################################
# setup system defaults
################################################################################
#VALGRIND="yes"
# Kernel target for u-boot (default 'uImage' if BOOTLOADER=u-boot) (uImage / zImage)
KERNEL_TARGET="Image"
# Kernel extra targets to build
KERNEL_UBOOT_EXTRA_TARGET=""
# Additional kernel make parameters (for example to specify the u-boot loadaddress)
KERNEL_MAKE_EXTRACMD="dtbs"
#Set kernel toolchain
#KERNEL_TOOLCHAIN="aarch64-none-linux-gnu"
################################################################################
# setup build defaults
################################################################################
# Project CFLAGS
if [ "${DEBUG}" = "no" -o "${DEBUG}" = "" ]; then
PROJECT_CFLAGS="-O3"
fi
PROJECT_CFLAGS=""
# SquashFS compression method (gzip / lzo / xz)
SQUASHFS_COMPRESSION="lzo"
################################################################################
# setup project defaults
################################################################################
# disable arm target
if [ "${ARCH}" = "arm" ]; then
echo "Error: 32bit ARM arch is not currently supported on Ayn Devices"
echo "Maybe in the future for libreelec."
exit 1
fi