- dGPU support
- OV08D10 MIPI CSI V4L2 support
- Camera preview by gstreamer command
- Cheese Camera App support
- Audio switch support
- Auto-switch to BT Audio when connecting BT headphone
- Auto-switch to HDMI audio when disconnecting BT headphone
- Splash display
- virtual resolution support for eDP
- Chromium VPU decode acceleration
12 lines
310 B
Makefile
12 lines
310 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the RF switch subsystem.
|
|
#
|
|
|
|
rfkill-y += core.o
|
|
rfkill-$(CONFIG_RFKILL_INPUT) += input.o
|
|
obj-$(CONFIG_RFKILL) += rfkill.o
|
|
obj-$(CONFIG_RFKILL_GPIO) += rfkill-gpio.o
|
|
obj-$(CONFIG_RFKILL_WLAN) += rfkill-wlan.o
|
|
obj-$(CONFIG_RFKILL_BT) += rfkill-bt.o
|