mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
* uboot_helper: add dragonboard 410c * scripts/uboot_helper: add formatting to the python object sort printed output use dashes instead of underscores for board names sort alphabetically * u-boot: add support for installing firmware into the u-boot root directory * dtc: allow building for host
74 lines
2.1 KiB
Text
74 lines
2.1 KiB
Text
################################################################################
|
|
# setup system defaults
|
|
################################################################################
|
|
|
|
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
|
|
BOOTLOADER="u-boot"
|
|
|
|
# U-Boot firmware package(s) to use
|
|
UBOOT_FIRMWARE="amlogic-boot-fip"
|
|
|
|
# Linux Kernel to use
|
|
LINUX="default"
|
|
|
|
################################################################################
|
|
# setup build defaults
|
|
################################################################################
|
|
|
|
# Project CFLAGS
|
|
PROJECT_CFLAGS=""
|
|
|
|
# SquashFS compression method (gzip / lzo / xz / zstd)
|
|
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"
|
|
|
|
# Displayserver to use (x11 / no)
|
|
DISPLAYSERVER="no"
|
|
|
|
# Windowmanager to use (ratpoison / fluxbox / none)
|
|
WINDOWMANAGER="none"
|
|
|
|
# Xorg Graphic drivers to use (all / i915,i965,r200,r300,r600,nvidia)
|
|
# Space separated list is supported,
|
|
# e.g. GRAPHIC_DRIVERS="i915 i965 r300 r600 radeonsi nvidia"
|
|
GRAPHIC_DRIVERS=""
|
|
|
|
# additional Firmware to use (dvb-firmware, misc-firmware, wlan-firmware)
|
|
FIRMWARE="brcmfmac_sdio-firmware meson-firmware"
|
|
|
|
# build and install ATV IR remote support (yes / no)
|
|
ATVCLIENT_SUPPORT="no"
|
|
|
|
# build and install iSCSI support - iscsistart (yes / no)
|
|
ISCSI_SUPPORT="no"
|
|
|
|
# build with installer (yes / no)
|
|
INSTALLER_SUPPORT="no"
|
|
|
|
# build and install driver addons (yes / no)
|
|
DRIVER_ADDONS_SUPPORT="no"
|
|
|
|
# driver addons to install:
|
|
DRIVER_ADDONS="crazycat dvb-latest"
|
|
|
|
if [ "$DISTRO" = "Lakka" ]; then
|
|
DRIVER_ADDONS=""
|
|
fi
|
|
|
|
# additional packages to install:
|
|
ADDITIONAL_PACKAGES="u-boot-script dtc ethmactool"
|
|
|
|
# use the kernel CEC framework for libcec (yes / no)
|
|
CEC_FRAMEWORK_SUPPORT="yes"
|
|
|
|
# debug tty path
|
|
DEBUG_TTY="/dev/ttyAML0"
|