-
Notifications
You must be signed in to change notification settings - Fork 325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
app: boards: intel boards, disable winstream console #8932
Conversation
Disable CONFIG_WINSTREAM_CONSOLE in all Intel configs that enable SOF mtrace for logging. Also disable CONFIG_LOG_BACKEND_ADSP that uses winstream as backend. No need to have two memory window based logging backends enabled at the same time. Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
@@ -71,6 +71,8 @@ CONFIG_LOG_BACKEND_SOF_PROBE=n | |||
CONFIG_SOF_LOG_LEVEL_INF=y | |||
CONFIG_ZEPHYR_LOG=y | |||
CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP=y | |||
CONFIG_LOG_BACKEND_ADSP=n | |||
CONFIG_WINSTREAM_CONSOLE=n |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, do we need CONFIG_CONSOLE
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lyakh Maybe not, but that's a bit separate discussion where to disable that. As far as I can tell, having it enabled does not bring new code to SOF build.
@tobonex @lyakh @marcinszkudlinski @jsarha .. ping? |
If it just removes some content from memory window 3 then it probably won't affect my changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fine by me, if nobody uses it.
Disable CONFIG_WINSTREAM_CONSOLE in all Intel configs that enable SOF mtrace for logging. Also disable CONFIG_LOG_BACKEND_ADSP that uses winstream as backend. No need to have two memory window based logging backends enabled at the same time.