diff options
author | Denys Dmytriyenko <denys@ti.com> | 2017-03-27 23:27:05 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2017-03-28 17:18:59 -0400 |
commit | 799c4f6cd35ed6a52e588974753c1e67336992d2 (patch) | |
tree | d210625d371b29e1c77c886d6d5da8c419d444ca /recipes-ti | |
parent | 6388e67e7e8428b5b60b50f7383d43b0e7442efa (diff) | |
download | meta-ti-799c4f6cd35ed6a52e588974753c1e67336992d2.tar.gz |
ti-ipc: add module dependency between omap_remoteproc and virtio_rpmsg_bus
This is required to workaround the remoteproc crash due to watchdog interrupt
conflicts - LCPD-9490
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Cc: Sam Nelson <sam.nelson@ti.com>
Cc: Suman Anna <s-anna@ti.com>
Reviewed-by: Suman Anna <s-anna@ti.com>
Diffstat (limited to 'recipes-ti')
-rw-r--r-- | recipes-ti/ipc/ti-ipc/omap_remoteproc.conf | 1 | ||||
-rw-r--r-- | recipes-ti/ipc/ti-ipc_git.bb | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/recipes-ti/ipc/ti-ipc/omap_remoteproc.conf b/recipes-ti/ipc/ti-ipc/omap_remoteproc.conf new file mode 100644 index 00000000..6b5034cd --- /dev/null +++ b/recipes-ti/ipc/ti-ipc/omap_remoteproc.conf | |||
@@ -0,0 +1 @@ | |||
softdep omap_remoteproc pre: virtio_rpmsg_bus | |||
diff --git a/recipes-ti/ipc/ti-ipc_git.bb b/recipes-ti/ipc/ti-ipc_git.bb index 5878b632..05b4d85d 100644 --- a/recipes-ti/ipc/ti-ipc_git.bb +++ b/recipes-ti/ipc/ti-ipc_git.bb | |||
@@ -9,6 +9,7 @@ PR = "${INC_PR}.0" | |||
9 | DEPENDS += "virtual/kernel" | 9 | DEPENDS += "virtual/kernel" |
10 | 10 | ||
11 | SRC_URI += "file://tiipclad-daemon.sh \ | 11 | SRC_URI += "file://tiipclad-daemon.sh \ |
12 | file://omap_remoteproc.conf \ | ||
12 | file://0001-Add-kernel-build-dir.patch \ | 13 | file://0001-Add-kernel-build-dir.patch \ |
13 | " | 14 | " |
14 | 15 | ||
@@ -43,6 +44,11 @@ do_install_append() { | |||
43 | install -c -m 755 ${WORKDIR}/tiipclad-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} | 44 | install -c -m 755 ${WORKDIR}/tiipclad-daemon.sh ${D}${sysconfdir}/init.d/${INITSCRIPT_NAME} |
44 | } | 45 | } |
45 | 46 | ||
47 | do_install_append_dra7xx() { | ||
48 | install -d ${D}${sysconfdir}/modprobe.d/ | ||
49 | install -c -m 644 ${WORKDIR}/omap_remoteproc.conf ${D}${sysconfdir}/modprobe.d/ | ||
50 | } | ||
51 | |||
46 | PACKAGES =+ "${PN}-test" | 52 | PACKAGES =+ "${PN}-test" |
47 | RDEPENDS_${PN}-test += "${PN}" | 53 | RDEPENDS_${PN}-test += "${PN}" |
48 | 54 | ||