distribution/projects/Rockchip/options

66 lines
1.9 KiB
Text
Raw Normal View History

2023-01-08 22:49:32 +00:00
################################################################################
# setup system defaults
################################################################################
2023-05-23 12:53:37 +00:00
# Bootloader to use (syslinux / u-boot)
2023-01-08 22:49:32 +00:00
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
################################################################################
# OpenGL(X) implementation to use (no / mesa)
2024-03-23 05:54:48 +00:00
OPENGL="mesa"
2023-01-08 22:49:32 +00:00
2024-03-23 05:54:48 +00:00
# OpenGL-ES implementation to use (no / mesa)
OPENGLES="mesa"
2023-01-08 22:49:32 +00:00
2023-05-23 12:53:37 +00:00
# Displayserver to use (no / wl)
2023-01-08 22:49:32 +00:00
DISPLAYSERVER="no"
2023-05-23 12:53:37 +00:00
# Windowmanager to use (none / weston)
2023-01-08 22:49:32 +00:00
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 ( )
2023-01-08 22:49:32 +00:00
# Space separated list is supported,
# e.g. FIRMWARE=""
FIRMWARE=" rockchip-firmware"
2023-01-08 22:49:32 +00:00
# additional packages to install
# ADDITIONAL_PACKAGES=""
# build and install CEC framework support (yes / no)
CEC_FRAMEWORK_SUPPORT="yes"
# Start boot partition at 16MiB, same as https://github.com/rockchip-linux/build images
SYSTEM_PART_START=32768
# debug tty path
DEBUG_TTY="/dev/ttyS2"
2023-10-25 20:36:39 +00:00
# build with entware installer
ENTWARE_SUPPORT="yes"
ENTWARE_ARCH="aarch64-k3.10"