diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-10 15:09:27 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-10 15:09:27 -0400 |
commit | 92589cbdda677a84ca5e485e1083c7d3bdcfc7b9 (patch) | |
tree | 3ba481707efe11a28d2cb27f8bacfde4224ad6cd /samples/Kconfig | |
parent | 9ab89c407d904c284558bbcd285eb3baef9d8c07 (diff) | |
parent | 730b2ad8f72898029160a6832141ba954122a0c8 (diff) |
Merge tag 'rproc-v4.17' of git://github.com/andersson/remoteproc
Pull remoteproc updates from Bjorn Andersson:
- add support for generating coredumps for remoteprocs using
devcoredump
- add the Qualcomm sysmon driver for intra-remoteproc crash handling
- a number of fixes in Qualcomm and IMX drivers
* tag 'rproc-v4.17' of git://github.com/andersson/remoteproc:
remoteproc: fix null pointer dereference on glink only platforms
soc: qcom: qmi: add CONFIG_NET dependency
remoteproc: imx_rproc: Slightly simplify code in 'imx_rproc_probe()'
remoteproc: imx_rproc: Re-use existing error handling path in 'imx_rproc_probe()'
remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()'
samples: Introduce Qualcomm QMI sample client
remoteproc: qcom: Introduce sysmon
remoteproc: Pass type of shutdown to subdev remove
remoteproc: qcom: Register segments for core dump
soc: qcom: mdt-loader: Return relocation base
remoteproc: Rename "load_rsc_table" to "parse_fw"
remoteproc: Add remote processor coredump support
remoteproc: Remove null character write of shared mem
Diffstat (limited to 'samples/Kconfig')
-rw-r--r-- | samples/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/Kconfig b/samples/Kconfig index f524f551718e..3db002b9e1d3 100644 --- a/samples/Kconfig +++ b/samples/Kconfig | |||
@@ -62,6 +62,16 @@ config SAMPLE_KDB | |||
62 | Build an example of how to dynamically add the hello | 62 | Build an example of how to dynamically add the hello |
63 | command to the kdb shell. | 63 | command to the kdb shell. |
64 | 64 | ||
65 | config SAMPLE_QMI_CLIENT | ||
66 | tristate "Build qmi client sample -- loadable modules only" | ||
67 | depends on m | ||
68 | depends on ARCH_QCOM | ||
69 | depends on NET | ||
70 | select QCOM_QMI_HELPERS | ||
71 | help | ||
72 | Build an QMI client sample driver, which demonstrates how to | ||
73 | communicate with a remote QRTR service, using QMI encoded messages. | ||
74 | |||
65 | config SAMPLE_RPMSG_CLIENT | 75 | config SAMPLE_RPMSG_CLIENT |
66 | tristate "Build rpmsg client sample -- loadable modules only" | 76 | tristate "Build rpmsg client sample -- loadable modules only" |
67 | depends on RPMSG && m | 77 | depends on RPMSG && m |