2021-10-27 00:47:55 -07:00
|
|
|
################################################################################
|
|
|
|
# setup system defaults
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
|
2023-06-09 17:16:27 -07:00
|
|
|
BOOTLOADER="u-boot"
|
|
|
|
|
|
|
|
# Kernel target for u-boot (default 'uImage' if BOOTLOADER=u-boot) (uImage / zImage)
|
2021-10-27 00:47:55 -07:00
|
|
|
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"
|
2021-11-03 00:22:33 -07:00
|
|
|
|
2021-10-27 00:47:55 -07:00
|
|
|
################################################################################
|
|
|
|
# setup build defaults
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Project CFLAGS
|
2021-11-23 15:06:43 -08:00
|
|
|
if [ "${DEBUG}" = "no" -o "${DEBUG}" = "" ]; then
|
2021-11-03 00:22:33 -07:00
|
|
|
PROJECT_CFLAGS="-O3"
|
|
|
|
fi
|
2021-10-27 00:47:55 -07:00
|
|
|
# SquashFS compression method (gzip / lzo / xz)
|
|
|
|
SQUASHFS_COMPRESSION="lzo"
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# setup project defaults
|
|
|
|
################################################################################
|
2023-06-09 17:16:27 -07:00
|
|
|
|
2021-10-27 00:47:55 -07:00
|
|
|
# build and install ALSA Audio support (yes / no)
|
|
|
|
ALSA_SUPPORT="yes"
|
2023-06-09 17:16:27 -07:00
|
|
|
|
2021-10-27 00:47:55 -07:00
|
|
|
# build and install PulseAudio support (yes / no)
|
|
|
|
PULSEAUDIO_SUPPORT="yes"
|
|
|
|
|
|
|
|
# build and install WireGuard support (yes / no)
|
|
|
|
WIREGUARD_SUPPORT="no"
|
|
|
|
|
Cleanup decoder/encoder stuff for L4T Builds, update some things, fix GLES building, but keep GL build. Other Minor cleanups. (#1623)
* Update L4T encoder/decoder to latest version which is 70% faster at 1080p
* Add vulkan support to ffmpeg
* Add vitaquake3 and boom3 cores for switch builds
These cores are considered broken, but starting, so maybe in the future they will be more reliable.
* Run dock-hotplug before starting retroarch.
This Will properly force DPI if booted on dock, and audio switching. It also has the added bonus of force fixing audio issues where speakers randomly dont work on boot."
* Update Kernel Repos
* update libglvnd
* update xf86-video-nouveau
* Build mesa properly in L4T LibreELEC builds.
* Update L4T build config for retroarch to fix building with support for EGL/openGLES.
While L4T supports EGL/OpenGLES, and the issue building for it is fixed,
we arent switching now though because moonlight core doesnt support it.
* Exclude moonlight core in Lakka builds that use openGLES over openGL, as openGLES is not supported
* Use openGLES in LibreELEC builds, as that is what upstream is targeting
2022-03-10 09:17:48 -08:00
|
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
2023-06-09 17:16:27 -07:00
|
|
|
# OpenGL(X) implementation to use (no / Mesa)
|
|
|
|
OPENGLES="no" #OpenGLES works, but breaks some cores that dont support it(Moonlight)
|
Cleanup decoder/encoder stuff for L4T Builds, update some things, fix GLES building, but keep GL build. Other Minor cleanups. (#1623)
* Update L4T encoder/decoder to latest version which is 70% faster at 1080p
* Add vulkan support to ffmpeg
* Add vitaquake3 and boom3 cores for switch builds
These cores are considered broken, but starting, so maybe in the future they will be more reliable.
* Run dock-hotplug before starting retroarch.
This Will properly force DPI if booted on dock, and audio switching. It also has the added bonus of force fixing audio issues where speakers randomly dont work on boot."
* Update Kernel Repos
* update libglvnd
* update xf86-video-nouveau
* Build mesa properly in L4T LibreELEC builds.
* Update L4T build config for retroarch to fix building with support for EGL/openGLES.
While L4T supports EGL/OpenGLES, and the issue building for it is fixed,
we arent switching now though because moonlight core doesnt support it.
* Exclude moonlight core in Lakka builds that use openGLES over openGL, as openGLES is not supported
* Use openGLES in LibreELEC builds, as that is what upstream is targeting
2022-03-10 09:17:48 -08:00
|
|
|
|
|
|
|
# OpenGL implementation to use (no / Mesa)
|
2023-06-09 17:16:27 -07:00
|
|
|
OPENGL="mesa"
|
Cleanup decoder/encoder stuff for L4T Builds, update some things, fix GLES building, but keep GL build. Other Minor cleanups. (#1623)
* Update L4T encoder/decoder to latest version which is 70% faster at 1080p
* Add vulkan support to ffmpeg
* Add vitaquake3 and boom3 cores for switch builds
These cores are considered broken, but starting, so maybe in the future they will be more reliable.
* Run dock-hotplug before starting retroarch.
This Will properly force DPI if booted on dock, and audio switching. It also has the added bonus of force fixing audio issues where speakers randomly dont work on boot."
* Update Kernel Repos
* update libglvnd
* update xf86-video-nouveau
* Build mesa properly in L4T LibreELEC builds.
* Update L4T build config for retroarch to fix building with support for EGL/openGLES.
While L4T supports EGL/OpenGLES, and the issue building for it is fixed,
we arent switching now though because moonlight core doesnt support it.
* Exclude moonlight core in Lakka builds that use openGLES over openGL, as openGLES is not supported
* Use openGLES in LibreELEC builds, as that is what upstream is targeting
2022-03-10 09:17:48 -08:00
|
|
|
else
|
2023-06-09 17:16:27 -07:00
|
|
|
# OpenGL(X) implementation to use (no / Mesa)
|
|
|
|
OPENGLES="mesa" #OpenGLES works, but breaks some cores that dont support it(Moonlight)
|
Cleanup decoder/encoder stuff for L4T Builds, update some things, fix GLES building, but keep GL build. Other Minor cleanups. (#1623)
* Update L4T encoder/decoder to latest version which is 70% faster at 1080p
* Add vulkan support to ffmpeg
* Add vitaquake3 and boom3 cores for switch builds
These cores are considered broken, but starting, so maybe in the future they will be more reliable.
* Run dock-hotplug before starting retroarch.
This Will properly force DPI if booted on dock, and audio switching. It also has the added bonus of force fixing audio issues where speakers randomly dont work on boot."
* Update Kernel Repos
* update libglvnd
* update xf86-video-nouveau
* Build mesa properly in L4T LibreELEC builds.
* Update L4T build config for retroarch to fix building with support for EGL/openGLES.
While L4T supports EGL/OpenGLES, and the issue building for it is fixed,
we arent switching now though because moonlight core doesnt support it.
* Exclude moonlight core in Lakka builds that use openGLES over openGL, as openGLES is not supported
* Use openGLES in LibreELEC builds, as that is what upstream is targeting
2022-03-10 09:17:48 -08:00
|
|
|
|
|
|
|
# OpenGL implementation to use (no / Mesa)
|
2023-06-09 17:16:27 -07:00
|
|
|
OPENGL="mesa"
|
Cleanup decoder/encoder stuff for L4T Builds, update some things, fix GLES building, but keep GL build. Other Minor cleanups. (#1623)
* Update L4T encoder/decoder to latest version which is 70% faster at 1080p
* Add vulkan support to ffmpeg
* Add vitaquake3 and boom3 cores for switch builds
These cores are considered broken, but starting, so maybe in the future they will be more reliable.
* Run dock-hotplug before starting retroarch.
This Will properly force DPI if booted on dock, and audio switching. It also has the added bonus of force fixing audio issues where speakers randomly dont work on boot."
* Update Kernel Repos
* update libglvnd
* update xf86-video-nouveau
* Build mesa properly in L4T LibreELEC builds.
* Update L4T build config for retroarch to fix building with support for EGL/openGLES.
While L4T supports EGL/OpenGLES, and the issue building for it is fixed,
we arent switching now though because moonlight core doesnt support it.
* Exclude moonlight core in Lakka builds that use openGLES over openGL, as openGLES is not supported
* Use openGLES in LibreELEC builds, as that is what upstream is targeting
2022-03-10 09:17:48 -08:00
|
|
|
fi
|
2021-11-03 00:22:33 -07:00
|
|
|
|
2022-10-13 11:05:34 -07:00
|
|
|
# Vulkan Support
|
2023-06-09 17:16:27 -07:00
|
|
|
VULKAN="vulkan-loader"
|
|
|
|
|
2021-10-27 00:47:55 -07:00
|
|
|
# include uvesafb support (yes / no)
|
|
|
|
UVESAFB_SUPPORT="no"
|
|
|
|
|
|
|
|
# Displayserver to use (x11 / no)
|
|
|
|
DISPLAYSERVER="x11"
|
|
|
|
|
2022-04-09 19:02:37 +02:00
|
|
|
# Windowmanager to use (ratpoison / fluxbox / no)
|
|
|
|
WINDOWMANAGER="no"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# Xorg Graphic drivers to use (all / i915,i965,r200,r300,r600,nvidia,nouveau)
|
|
|
|
# Space separated list is supported,
|
|
|
|
# e.g. GRAPHIC_DRIVERS="i915 i965 r300 r600 radeonsi nvidia nouveau"
|
2022-10-13 11:05:34 -07:00
|
|
|
GRAPHIC_DRIVERS="nouveau"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# KODI Player implementation to use (default / bcm2835-driver / libfslvpuwrap / libamcodec)
|
2021-11-03 00:22:33 -07:00
|
|
|
# KODIPLAYER_DRIVER="default"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# Modules to install in initramfs for early boot
|
2021-11-03 00:22:33 -07:00
|
|
|
# INITRAMFS_MODULES="font softcursor bitblit fbcon"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# OEM packages for OEM's (yes / no)
|
2021-11-03 00:22:33 -07:00
|
|
|
# OEM_SUPPORT="no"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# additional drivers to install:
|
|
|
|
# for a list of additinoal drivers see packages/linux-drivers
|
|
|
|
# Space separated list is supported,
|
|
|
|
# e.g. ADDITIONAL_DRIVERS="DRIVER1 DRIVER2"
|
2021-11-03 00:22:33 -07:00
|
|
|
ADDITIONAL_DRIVERS="tegra-bsp"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
|
|
|
# additional Firmware to use (dvb-firmware, misc-firmware, wlan-firmware)
|
|
|
|
# Space separated list is supported,
|
|
|
|
# e.g. FIRMWARE="dvb-firmware misc-firmware wlan-firmware"
|
|
|
|
FIRMWARE="misc-firmware wlan-firmware dvb-firmware"
|
|
|
|
|
|
|
|
# build and install ATV IR remote support (yes / no)
|
|
|
|
ATVCLIENT_SUPPORT="no"
|
|
|
|
|
|
|
|
# Amlogic IR remote support (yes / no)
|
|
|
|
AMREMOTE_SUPPORT="no"
|
|
|
|
|
|
|
|
# build with installer (yes / no)
|
|
|
|
INSTALLER_SUPPORT="no"
|
|
|
|
|
|
|
|
# Kernel to build
|
|
|
|
LINUX="L4T"
|
2023-06-09 17:16:27 -07:00
|
|
|
|
2022-02-21 01:10:20 -08:00
|
|
|
# CEC Support
|
2022-02-27 09:39:35 -08:00
|
|
|
CEC_FRAMEWORK_SUPPORT="no"
|
2022-02-21 01:10:20 -08:00
|
|
|
|
2024-05-22 06:09:36 -07:00
|
|
|
# build and install iSCSI support - iscsistart (yes / no)
|
|
|
|
ISCSI_SUPPORT="yes"
|
|
|
|
|
2022-02-21 01:10:20 -08:00
|
|
|
# Set Distro Specific options
|
2022-10-13 11:05:34 -07:00
|
|
|
if [ "${DISTRO}" = "LibreELEC" ]; then
|
2021-11-03 00:22:33 -07:00
|
|
|
#Add Support for git downloads
|
2023-06-09 17:16:27 -07:00
|
|
|
GET_HANDLER_SUPPORT+=" git"
|
|
|
|
fi
|
2021-10-27 00:47:55 -07:00
|
|
|
|
2023-06-09 17:16:27 -07:00
|
|
|
#Use wpa_supplicant over iwd
|
|
|
|
WIRELESS_DAEMON="wpa_supplicant"
|
2021-10-27 00:47:55 -07:00
|
|
|
|
2023-06-09 17:16:27 -07:00
|
|
|
# disable arm target
|
2021-11-03 00:22:33 -07:00
|
|
|
if [ "${ARCH}" = "arm" ]; then
|
2021-10-27 00:47:55 -07:00
|
|
|
echo "Error: 32bit ARM arch is not supported by L4T"
|
|
|
|
exit 1
|
|
|
|
fi
|