81 lines
2.5 KiB
Plaintext
81 lines
2.5 KiB
Plaintext
################################################################################
|
|
# setup system defaults
|
|
################################################################################
|
|
|
|
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
|
|
BOOTLOADER="u-boot"
|
|
|
|
# Additional kernel make parameters (for example to specify the u-boot loadaddress)
|
|
KERNEL_MAKE_EXTRACMD="dtbs"
|
|
|
|
# Kernel to use. values can be:
|
|
# default: default mainline kernel
|
|
LINUX="default"
|
|
|
|
################################################################################
|
|
# setup build defaults
|
|
################################################################################
|
|
|
|
# Project CFLAGS
|
|
PROJECT_CFLAGS=""
|
|
|
|
# SquashFS compression method (gzip / lzo / xz)
|
|
SQUASHFS_COMPRESSION="zstd"
|
|
|
|
################################################################################
|
|
# setup project defaults
|
|
################################################################################
|
|
|
|
# build and install ALSA Audio support (yes / no)
|
|
ALSA_SUPPORT="yes"
|
|
|
|
# OpenGL(X) implementation to use (no / mesa)
|
|
OPENGL="no"
|
|
|
|
# OpenGL-ES implementation to use (no / bcm2835-driver / gpu-viv-bin-mx6q / opengl-meson6)
|
|
OPENGLES="mesa"
|
|
|
|
# include uvesafb support (yes / no)
|
|
UVESAFB_SUPPORT="no"
|
|
|
|
# Displayserver to use (x11 / no)
|
|
DISPLAYSERVER="no"
|
|
|
|
# Windowmanager to use (ratpoison / fluxbox / none)
|
|
WINDOWMANAGER="none"
|
|
|
|
# Xorg Graphic drivers to use (all / i915,r300,r600,nvidia)
|
|
# Space separated list is supported,
|
|
# e.g. GRAPHIC_DRIVERS="i915 r300 r600 radeonsi nvidia"
|
|
GRAPHIC_DRIVERS="etnaviv"
|
|
|
|
# KODI Player implementation to use (default / bcm2835-driver / libfslvpuwrap)
|
|
KODIPLAYER_DRIVER="mesa"
|
|
|
|
# build and install driver addons (yes / no)
|
|
DRIVER_ADDONS_SUPPORT="no"
|
|
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
|
DRIVER_ADDONS_SUPPORT="no"
|
|
fi
|
|
|
|
# driver addons to install:
|
|
# for a list of additional drivers see packages/linux-driver-addons
|
|
# Space separated list is supported,
|
|
DRIVER_ADDONS="crazycat dvb-latest"
|
|
|
|
# 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 brcmfmac_sdio-firmware"
|
|
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
|
FIRMWARE="${FIRMWARE//dvb-firmware/}"
|
|
fi
|
|
|
|
# build with installer (yes / no)
|
|
INSTALLER_SUPPORT="no"
|
|
|
|
# use the kernel CEC framework for libcec (yes / no)
|
|
CEC_FRAMEWORK_SUPPORT="yes"
|