Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
24 lines
992 B
Makefile
24 lines
992 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-y += -I $(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_RV) += rv.o
|
|
obj-$(CONFIG_RV_MON_WIP) += monitors/wip/wip.o
|
|
obj-$(CONFIG_RV_MON_WWNR) += monitors/wwnr/wwnr.o
|
|
obj-$(CONFIG_RV_MON_SCHED) += monitors/sched/sched.o
|
|
obj-$(CONFIG_RV_MON_SCO) += monitors/sco/sco.o
|
|
obj-$(CONFIG_RV_MON_SNROC) += monitors/snroc/snroc.o
|
|
obj-$(CONFIG_RV_MON_SCPD) += monitors/scpd/scpd.o
|
|
obj-$(CONFIG_RV_MON_SNEP) += monitors/snep/snep.o
|
|
obj-$(CONFIG_RV_MON_RTAPP) += monitors/rtapp/rtapp.o
|
|
obj-$(CONFIG_RV_MON_PAGEFAULT) += monitors/pagefault/pagefault.o
|
|
obj-$(CONFIG_RV_MON_SLEEP) += monitors/sleep/sleep.o
|
|
obj-$(CONFIG_RV_MON_STS) += monitors/sts/sts.o
|
|
obj-$(CONFIG_RV_MON_NRP) += monitors/nrp/nrp.o
|
|
obj-$(CONFIG_RV_MON_SSSW) += monitors/sssw/sssw.o
|
|
obj-$(CONFIG_RV_MON_OPID) += monitors/opid/opid.o
|
|
# Add new monitors here
|
|
obj-$(CONFIG_RV_REACTORS) += rv_reactors.o
|
|
obj-$(CONFIG_RV_REACT_PRINTK) += reactor_printk.o
|
|
obj-$(CONFIG_RV_REACT_PANIC) += reactor_panic.o
|