mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
ab9df0516e
Upstream prefers existing drivers be converted to support multiplatform kernels. This requires drivers to be located in generic functionality directories instead of specific mach directories. Move IPC Router Core and Security drivers to the net/ipc_router location to support multi-platform. Move IPC Router SMD & HSIC transport(XPRT) drivers to the drivers/soc/qcom location. Change-Id: I770227f66dcb776b26086426f509568f991db757 Signed-off-by: Karthikeyan Ramasubramanian <kramasub@codeaurora.org>
25 lines
859 B
Text
25 lines
859 B
Text
#
|
|
# IPC_ROUTER Configuration
|
|
#
|
|
|
|
menuconfig IPC_ROUTER
|
|
bool "IPC Router support"
|
|
help
|
|
IPC Router provides a connectionless message routing service
|
|
between multiple modules within a System-on-Chip(SoC). The
|
|
communicating entities can run either in the same processor or
|
|
in a different processor within the SoC. The IPC Router has been
|
|
designed to route messages of any types and support a broader
|
|
network of processors.
|
|
|
|
If in doubt, say N.
|
|
|
|
config IPC_ROUTER_SECURITY
|
|
depends on IPC_ROUTER
|
|
bool "IPC Router Security support"
|
|
help
|
|
This feature of IPC Router will enforce security rules
|
|
configured by a security script from the user-space. IPC Router
|
|
once configured with the security rules will ensure that the
|
|
sender of the message to a service belongs to the relevant
|
|
Linux group as configured by the security script.
|