mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
26 lines
589 B
Plaintext
26 lines
589 B
Plaintext
PKG_NAME="linux-drivers"
|
|
PKG_VERSION=""
|
|
PKG_REV="1"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.openelec.tv"
|
|
PKG_URL=""
|
|
PKG_DEPENDS=""
|
|
PKG_BUILD_DEPENDS="toolchain"
|
|
PKG_PRIORITY="optional"
|
|
PKG_SECTION="linux-drivers"
|
|
PKG_SHORTDESC="linux-drivers: Meta package to install additional drivers"
|
|
PKG_LONGDESC="linux-drivers is a Meta package to install additional drivers"
|
|
PKG_IS_ADDON="no"
|
|
|
|
for drivers in "$ADDITIONAL_DRIVERS"; do
|
|
case $drivers in
|
|
|
|
rtl8192se) PKG_DEPENDS="$PKG_DEPENDS rtl8192se"
|
|
;;
|
|
broadcom) PKG_DEPENDS="$PKG_DEPENDS bcm_sta"
|
|
;;
|
|
|
|
esac
|
|
done
|