71 lines
2 KiB
Text
71 lines
2 KiB
Text
################################################################################
|
|
# setup system defaults
|
|
################################################################################
|
|
|
|
# Bootloader to use (syslinux / u-boot)
|
|
BOOTLOADER="u-boot"
|
|
|
|
# Kernel extra targets to build
|
|
KERNEL_UBOOT_EXTRA_TARGET=""
|
|
|
|
# Kernel to use. values can be:
|
|
# default: default mainline kernel
|
|
LINUX=""
|
|
|
|
################################################################################
|
|
# setup build defaults
|
|
################################################################################
|
|
|
|
# Project FLAGS
|
|
PROJECT_CFLAGS=""
|
|
|
|
# SquashFS compression method (gzip / lzo / xz)
|
|
SQUASHFS_COMPRESSION="lzo"
|
|
|
|
################################################################################
|
|
# setup project defaults
|
|
################################################################################
|
|
|
|
# OpenGL(X) implementation to use (no / mesa)
|
|
OPENGL="mesa"
|
|
|
|
# OpenGL-ES implementation to use (no / libmali / mesa)
|
|
OPENGLES="mesa"
|
|
|
|
# Displayserver to use (no / wl)
|
|
DISPLAYSERVER="wl"
|
|
|
|
# Windowmanager to use (none / weston)
|
|
WINDOWMANAGER="weston"
|
|
|
|
# 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=""
|
|
|
|
# Modules to install in initramfs for early boot
|
|
INITRAMFS_MODULES=""
|
|
|
|
# additional Firmware to use ( )
|
|
# Space separated list is supported,
|
|
# e.g. FIRMWARE=""
|
|
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"
|
|
|
|
# build and install driver addons (yes / no)
|
|
DRIVER_ADDONS_SUPPORT="no"
|
|
|
|
# debug tty path
|
|
DEBUG_TTY="/dev/ttyAML0"
|
|
|
|
# build with entware installer
|
|
ENTWARE_SUPPORT="yes"
|
|
ENTWARE_ARCH="aarch64-k3.10"
|