mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
25 lines
665 B
Makefile
25 lines
665 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="linux-drivers"
|
|
PKG_VERSION=""
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://libreelec.tv"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="toolchain $ADDITIONAL_DRIVERS"
|
|
PKG_SECTION="virtual"
|
|
PKG_LONGDESC="linux-drivers is a Meta package to install additional drivers"
|
|
|
|
if [ "$DRIVER_ADDONS_SUPPORT" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET="${PKG_DEPENDS_TARGET} $DRIVER_ADDONS driverselect"
|
|
fi
|
|
|
|
if [ "${ARCHR_JOYPAD}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" archr-joypad"
|
|
fi
|
|
|
|
if [ "${ArchR_DEVICE_TREE_OVERLAYS}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" device-tree-overlays"
|
|
fi
|
|
|