From: Venkateswara Rao Mandela Date: Tue, 15 Aug 2017 12:49:12 +0000 (+0530) Subject: add script to filter dmesg for remoteproc logs X-Git-Url: https://git.ti.com/gitweb?p=glsdk%2Futil-scripts.git;a=commitdiff_plain;h=ecbb9cd13e1728686a82e87e5c1b325c0e806202 add script to filter dmesg for remoteproc logs --- diff --git a/debug/filter-dmesg-rproc.sh b/debug/filter-dmesg-rproc.sh new file mode 100755 index 0000000..8029dc1 --- /dev/null +++ b/debug/filter-dmesg-rproc.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +dmesg | sed -n \ + -e '/iommu/p' \ + -e '/remoteproc/p' \ + -e '/rproc/p' \ + -e '/Mounted root/p' \ + -e '/virtio/p' \ + -e '/no idle/p' \ + -e '/no reset/p' \ + | uniq