Files
Arch-R/projects/Rockchip/options

86 lines
2.6 KiB
Plaintext
Raw Normal View History

2017-11-01 22:57:41 +01:00
################################################################################
# setup system defaults
################################################################################
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
BOOTLOADER="u-boot"
# U-Boot firmware package(s) to use
UBOOT_FIRMWARE="rkbin"
2022-09-11 01:06:20 +02:00
UBOOT_FIT_IMAGE="u-boot-rockchip.bin"
2019-12-31 09:09:33 +00:00
# Additional kernel make parameters (for example to specify the u-boot loadaddress)
KERNEL_MAKE_EXTRACMD="dtbs"
# Additional kernel dependencies
KERNEL_EXTRA_DEPENDS_TARGET="lz4:host"
2017-11-01 22:57:41 +01:00
# Kernel to use. values can be:
# default: default mainline kernel
2019-12-31 09:09:33 +00:00
LINUX="${LINUX:-default}"
2017-11-01 22:57:41 +01:00
################################################################################
# setup build defaults
################################################################################
# Project CFLAGS
PROJECT_CFLAGS=""
# SquashFS compression method (gzip / lzo / xz / zstd)
SQUASHFS_COMPRESSION="zstd"
2017-11-01 22:57:41 +01:00
################################################################################
# setup project defaults
################################################################################
# OpenGL(X) implementation to use (no / mesa)
OPENGL="no"
2019-12-31 09:09:33 +00:00
# OpenGL-ES implementation to use (no / libmali / mesa)
2020-05-10 21:42:50 +00:00
OPENGLES="${OPENGLES:-mesa}"
2017-11-01 22:57:41 +01:00
# Vulkan implementation to use (vulkan-loader / no)
VULKAN="no"
# Displayserver to use (wl / no)
2017-11-01 22:57:41 +01:00
DISPLAYSERVER="no"
# Windowmanager to use (weston / no)
WINDOWMANAGER="no"
2017-11-01 22:57:41 +01:00
# Xorg Graphic drivers to use (all / lima,panfrost)
2017-11-01 22:57:41 +01:00
# Space separated list is supported,
# e.g. GRAPHIC_DRIVERS="lima panfrost"
2017-11-01 22:57:41 +01:00
GRAPHIC_DRIVERS=""
# KODI Player implementation to use (default / bcm2835-driver / libfslvpuwrap)
2019-01-15 19:50:06 +01:00
KODIPLAYER_DRIVER="$OPENGLES"
2017-11-01 22:57:41 +01: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 brcmfmac_sdio-firmware"
2017-11-01 22:57:41 +01:00
# additional packages to install
ADDITIONAL_PACKAGES+=" dtc"
2017-11-01 22:57:41 +01:00
# build and install CEC framework support (yes / no)
CEC_FRAMEWORK_SUPPORT="yes"
# build with installer (yes / no)
INSTALLER_SUPPORT="no"
# Start boot partition at 16MiB, same as https://github.com/rockchip-linux/build images
SYSTEM_PART_START=32768
# build and install driver addons (yes / no)
2019-12-31 09:09:33 +00:00
DRIVER_ADDONS_SUPPORT="no"
# driver addons to install:
# for a list of additinoal drivers see packages/linux-driver-addons
# Space separated list is supported,
2019-06-13 21:19:20 +02:00
DRIVER_ADDONS="dvb-latest"
# debug tty path
DEBUG_TTY="/dev/ttyS2"