87 lines
2.7 KiB
Text
87 lines
2.7 KiB
Text
################################################################################
|
|
# setup system defaults
|
|
################################################################################
|
|
|
|
# Bootloader to use (syslinux / u-boot / bcm2835-bootloader)
|
|
BOOTLOADER="u-boot"
|
|
|
|
# Kernel extra targets to build
|
|
KERNEL_UBOOT_EXTRA_TARGET=""
|
|
|
|
# Kernel to use. values can be:
|
|
# default: default mainline kernel
|
|
LINUX="${LINUX:-rockchip-4.4}"
|
|
|
|
################################################################################
|
|
# setup build defaults
|
|
################################################################################
|
|
|
|
# Project FLAGS
|
|
PROJECT_CFLAGS=""
|
|
|
|
# SquashFS compression method (gzip / lzo / xz)
|
|
SQUASHFS_COMPRESSION="lzo"
|
|
|
|
################################################################################
|
|
# 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)
|
|
OPENGLES="libmali"
|
|
|
|
# include uvesafb support (yes / no)
|
|
UVESAFB_SUPPORT="no"
|
|
|
|
# Displayserver to use (weston / no)
|
|
DISPLAYSERVER="no"
|
|
|
|
# Windowmanager to use (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=""
|
|
|
|
# Use a vendor specific KODI repo
|
|
KODI_VENDOR="rockchip"
|
|
|
|
# KODI Player implementation to use (default / bcm2835-driver / libfslvpuwrap)
|
|
KODIPLAYER_DRIVER="$OPENGLES"
|
|
|
|
# Modules to install in initramfs for early boot
|
|
INITRAMFS_MODULES=""
|
|
|
|
# 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 rockchip-firmware"
|
|
|
|
# additional packages to install
|
|
# ADDITIONAL_PACKAGES=""
|
|
|
|
# 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)
|
|
DRIVER_ADDONS_SUPPORT="yes"
|
|
|
|
# driver addons to install:
|
|
# for a list of additinoal drivers see packages/linux-driver-addons
|
|
# Space separated list is supported,
|
|
DRIVER_ADDONS="dvb-latest"
|
|
|
|
# debug tty path
|
|
DEBUG_TTY="/dev/ttyS2"
|