mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
################################################################################
|
|
# 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 / mesa)
|
|
OPENGLES="mesa"
|
|
|
|
# Displayserver to use (no / wl)
|
|
DISPLAYSERVER="no"
|
|
|
|
# Windowmanager to use (none / weston)
|
|
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 ( )
|
|
# Space separated list is supported,
|
|
# e.g. FIRMWARE=""
|
|
FIRMWARE=""
|
|
|
|
# Additional packages to install
|
|
ADDITIONAL_PACKAGES=""
|