forked from libretro/Lakka-LibreELEC
588ee556e2
update to 10.95.001 - LibreELEC 11 beta 1
96 lines
2.8 KiB
Plaintext
96 lines
2.8 KiB
Plaintext
################################################################################
|
|
# setup system defaults
|
|
################################################################################
|
|
|
|
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
|
|
BOOTLOADER="u-boot"
|
|
|
|
# U-Boot firmware package(s) to use
|
|
UBOOT_FIRMWARE="exynos-boot-fip"
|
|
|
|
# Kernel target for u-boot (default 'uImage' if BOOTLOADER=u-boot) (uImage / zImage)
|
|
KERNEL_TARGET="zImage"
|
|
|
|
# Additional kernel dependencies
|
|
KERNEL_EXTRA_DEPENDS_TARGET="lz4:host"
|
|
|
|
# Additional kernel make parameters (for example to specify the u-boot loadaddress)
|
|
KERNEL_MAKE_EXTRACMD="dtbs"
|
|
|
|
# Kernel to use:
|
|
LINUX="samsung"
|
|
|
|
# kernel serial console
|
|
EXTRA_CMDLINE="quiet systemd.debug_shell=ttySAC2 console=ttySAC2,115200n8 console=tty0"
|
|
|
|
# Default system partition offset in sectors
|
|
SYSTEM_PART_START=3072
|
|
|
|
|
|
################################################################################
|
|
# setup build defaults
|
|
################################################################################
|
|
|
|
# Project CFLAGS
|
|
PROJECT_CFLAGS=""
|
|
|
|
# SquashFS compression method (gzip / lzo / xz)
|
|
SQUASHFS_COMPRESSION="zstd"
|
|
|
|
|
|
################################################################################
|
|
# setup project defaults
|
|
################################################################################
|
|
|
|
# OpenGL(X) implementation to use (no / mesa)
|
|
OPENGL="no"
|
|
|
|
# Vulkan implementation to use (vulkan-loader / no)
|
|
VULKAN="no"
|
|
|
|
# Displayserver to use (wl / no)
|
|
DISPLAYSERVER="no"
|
|
|
|
# Windowmanager to use (weston / no)
|
|
WINDOWMANAGER="no"
|
|
|
|
# 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="kernel-firmware wlan-firmware"
|
|
|
|
# build with installer (yes / no)
|
|
INSTALLER_SUPPORT="no"
|
|
|
|
# additional packages to install:
|
|
# Space separated list is supported,
|
|
# e.g. ADDITIONAL_PACKAGES+=" PACKAGE1 PACKAGE2"
|
|
ADDITIONAL_PACKAGES+=" dtc emmctool"
|
|
|
|
# additional drivers to install:
|
|
# for a list of additional drivers see packages/linux-drivers
|
|
# Space separated list is supported,
|
|
# e.g. ADDITIONAL_DRIVERS+=" DRIVER1 DRIVER2"
|
|
ADDITIONAL_DRIVERS+=""
|
|
|
|
# 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"
|
|
|
|
# use the kernel CEC framework for libcec (yes / no)
|
|
CEC_FRAMEWORK_SUPPORT="yes"
|
|
|
|
# debug tty path
|
|
DEBUG_TTY="/dev/ttySAC2"
|
|
|
|
# set the addon project
|
|
ADDON_PROJECT="ARMv7"
|