<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックRe: imx8mp Android disable serial console</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101404#M237441</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Could you confirm you have applied the u-boot changes to the right *-defconfig? imx8mp has multiple *defconfig for android, in the example I applied the changes to "imx8mp_evk_android_trusty_dual_defconfig" but yours could be different, make sure you have applied to the right config file.&lt;/P&gt;</description>
    <pubDate>Wed, 21 May 2025 08:32:17 GMT</pubDate>
    <dc:creator>jiluo</dc:creator>
    <dc:date>2025-05-21T08:32:17Z</dc:date>
    <item>
      <title>imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2091334#M236930</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;We are using imx8mp with&amp;nbsp;android-13.0.0_1.2.0.&lt;/P&gt;&lt;P&gt;We wish to disable serial console and use that uart for communicating to external board.&lt;/P&gt;&lt;P&gt;In Uboot ,We tried console = null in boot args&amp;nbsp; /include/configs/imx8mp-evk.h&lt;BR /&gt;In Device , BoardConfig.mk&amp;nbsp;console = null&amp;nbsp;&lt;BR /&gt;it didnt work.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;please share steps to disable serial console in Android BSP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;LI-PRODUCT title="IMX8MPLUS" id="IMX8MPLUS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;LI-PRODUCT title="ANDROID-AUTO" id="ANDROID-AUTO"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 09:47:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2091334#M236930</guid>
      <dc:creator>shiva141</dc:creator>
      <dc:date>2025-05-05T09:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094194#M237064</link>
      <description>&lt;DIV&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/230279"&gt;@shiva141&lt;/a&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I hope you are doing very well.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;To fully disable the debug console, you can try:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;U-boot:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;include/configs/imx8mp-evk.h&lt;/DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;#define CONFIG_SILENT_CONSOLE
#define CONFIG_SYS_DEVICE_NULLDEV
#define CONFIG_SILENT_U_BOOT_ONLY&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Also ensure CONFIG_CONSOLE_MUX is not enabled.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Then, in your bootargs, remove any console=tty...&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;=&amp;gt; setenv bootargs 'console=null'&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Kernel Level:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;In your Android kernel device tree disable the UART node, as example:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;&amp;amp;uart2 {
    status = "disabled";
};&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Also, you can remove the console=tty... of your BoardConfig.mk or remove the:&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;BOARD_KERNEL_CMDLINE := ...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;You can replace with:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;BOARD_KERNEL_CMDLINE := androidboot.console=null
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Android Userspace (Init):&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;In your init.rc remove console services, like:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;#service console /system/bin/sh
#    class core
#    console
#    disabled
#    user shell
#    group shell&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Then try to rebuild and test.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Best regards,&lt;/DIV&gt;
&lt;DIV&gt;Salas.&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 May 2025 03:43:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094194#M237064</guid>
      <dc:creator>Manuel_Salas</dc:creator>
      <dc:date>2025-05-09T03:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094336#M237075</link>
      <description>Hi ,&lt;BR /&gt;Thanks for the reply.&lt;BR /&gt;&lt;BR /&gt;our BSP is based on android-13.0.0_1.2.0&lt;BR /&gt;&lt;BR /&gt;1)init.rc mentioned changes where not preset android_build/device/nxp/imx8m/evk_8mp/init.rc&lt;BR /&gt;2) For the above change Serial console was disabled but Android didn't boot ( we didn't get the android log on )&lt;BR /&gt;&lt;BR /&gt;We did small debug by doing the recommended changes one by one&lt;BR /&gt;Root cause : =&amp;gt; setenv bootargs 'console=null'&lt;BR /&gt;&lt;BR /&gt;in uboot after setenv Android didnt boot up.( no Android logo in HDMI monitor)&lt;BR /&gt;=&amp;gt; setenv bootargs 'console=null'&lt;BR /&gt;&lt;BR /&gt;Starting kernel ...&lt;BR /&gt;&lt;BR /&gt;was the last msg in serial console but Android didn't boot up.&lt;BR /&gt;</description>
      <pubDate>Fri, 09 May 2025 06:47:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094336#M237075</guid>
      <dc:creator>shiva141</dc:creator>
      <dc:date>2025-05-09T06:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094657#M237094</link>
      <description>&lt;DIV&gt;Hello,&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;After of investigate about this issue, it appears Android expects a valid console device.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Please try with:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;setenv bootargs 'console=tty0 androidboot.console=tty0'
saveenv&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Re-enable your Uart:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;&amp;amp;uart2 {
    status = "okay";
    // your custom config
};&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;And match the BOARD_KERNEL_CMDLINE in your BoardConfig.mk:&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;PRE class="language-markup" style="background: #efefef; padding: 8px; display: block; border: 1px solid #cccccc; overflow-x: auto;"&gt;&lt;CODE&gt;BOARD_KERNEL_CMDLINE := console=tty0 androidboot.console=tty0&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Please try those steps and let me know if it worked for you.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;FYI: console=tty0 redirects all kernel messages (printk) to the framebuffer/virtual terminal, not UART.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;I hope this can helps to you.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Best regards,&lt;/DIV&gt;
&lt;DIV&gt;Salas.&lt;/DIV&gt;</description>
      <pubDate>Fri, 09 May 2025 13:51:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2094657#M237094</guid>
      <dc:creator>Manuel_Salas</dc:creator>
      <dc:date>2025-05-09T13:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2098912#M237287</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You need to apply below changes to silent the console:&lt;/P&gt;
&lt;P&gt;In &lt;STRONG&gt;{ANDROID_PROJECT}/vendor/nxp-opensource/uboot-imx&lt;/STRONG&gt;:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;diff --git a/arch/arm/dts/imx8mp-evk.dts b/arch/arm/dts/imx8mp-evk.dts
index c3228b8ccb9..ee1a03b8a33 100644
--- a/arch/arm/dts/imx8mp-evk.dts
+++ b/arch/arm/dts/imx8mp-evk.dts
@@ -13,7 +13,7 @@
        compatible = "fsl,imx8mp-evk", "fsl,imx8mp";

        chosen {
-               bootargs = "console=ttymxc1,115200 earlycon=ec_imx6q,0x30890000,115200";
+               bootargs = "console=ttynull";
                stdout-path = &amp;amp;uart2;
        };

diff --git a/configs/imx8mp_evk_android_trusty_dual_defconfig b/configs/imx8mp_evk_android_trusty_dual_defconfig
index 33553ca143e..c2f333091b6 100644
--- a/configs/imx8mp_evk_android_trusty_dual_defconfig
+++ b/configs/imx8mp_evk_android_trusty_dual_defconfig
@@ -19,7 +19,7 @@ CONFIG_DM_GPIO=y
 CONFIG_SPL_TEXT_BASE=0x920000
 CONFIG_USB_TCPC=y
 CONFIG_TARGET_IMX8MP_EVK=y
-CONFIG_SPL_SERIAL=y
+CONFIG_SPL_SERIAL=n
 CONFIG_SPL_DRIVERS_MISC=y
 CONFIG_SPL=y
 CONFIG_SPL_IMX_ROMAPI_LOADADDR=0x48000000
@@ -194,3 +194,7 @@ CONFIG_ATTESTATION_ID_DEVICE="evk_8mp"
 CONFIG_ATTESTATION_ID_PRODUCT="evk_8mp"
 CONFIG_ATTESTATION_ID_MANUFACTURER="nxp"
 CONFIG_ATTESTATION_ID_MODEL="EVK_8MP"
+CONFIG_SILENT_CONSOLE=y
+CONFIG_SYS_DEVICE_NULLDEV=y
+CONFIG_SILENT_CONSOLE_UNTIL_ENV=y
+CONFIG_SILENT_U_BOOT_ONLY=y
diff --git a/include/configs/imx8mp_evk_android.h b/include/configs/imx8mp_evk_android.h
index 09e3841908b..823d40a292a 100644
--- a/include/configs/imx8mp_evk_android.h
+++ b/include/configs/imx8mp_evk_android.h
@@ -17,6 +17,7 @@
        "splashimage=0x50000000\0"              \
        "fdt_high=0xffffffffffffffff\0"         \
        "initrd_high=0xffffffffffffffff\0"      \
+       "silent=1\0"    \

 /* Enable mcu firmware flash */
 #ifdef CONFIG_FLASH_MCUFIRMWARE_SUPPORT
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;In {ANDROID_PROJECT}/device/nxp:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;diff --git a/imx8m/evk_8mp/BoardConfig.mk b/imx8m/evk_8mp/BoardConfig.mk
index c1e9314d..3f916ddf 100644
--- a/imx8m/evk_8mp/BoardConfig.mk
+++ b/imx8m/evk_8mp/BoardConfig.mk
@@ -132,7 +132,7 @@ BOARD_KERNEL_BASE := 0x40400000
 CMASIZE=1184M
 # NXP default config
 BOARD_KERNEL_CMDLINE := init=/init firmware_class.path=/vendor/firmware loop.max_part=7 bootconfig
-BOARD_BOOTCONFIG += androidboot.console=ttymxc1 androidboot.hardware=nxp
+BOARD_BOOTCONFIG += androidboot.hardware=nxp

 # memory config
 BOARD_KERNEL_CMDLINE += transparent_hugepage=never
&lt;/LI-CODE&gt;
&lt;P&gt;In {ANDROID_PROJECT}/vendor/nxp-opensource/arm-trusted-firmware:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;diff --git a/plat/imx/imx8m/imx8mp/imx8mp_bl31_setup.c b/plat/imx/imx8m/imx8mp/imx8mp_bl31_setup.c
index 348f90045..bb174ca49 100644
--- a/plat/imx/imx8m/imx8mp/imx8mp_bl31_setup.c
+++ b/plat/imx/imx8m/imx8mp/imx8mp_bl31_setup.c
@@ -208,7 +208,6 @@ static void bl31_tzc380_setup(void)
 void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
                u_register_t arg2, u_register_t arg3)
 {
-       static console_t console;
        unsigned int val;
        unsigned int i;

@@ -230,10 +229,10 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,

        imx8m_caam_init();

-       console_imx_uart_register(IMX_BOOT_UART_BASE, IMX_BOOT_UART_CLK_IN_HZ,
-               IMX_CONSOLE_BAUDRATE, &amp;amp;console);
+//     console_imx_uart_register(IMX_BOOT_UART_BASE, IMX_BOOT_UART_CLK_IN_HZ,
+//             IMX_CONSOLE_BAUDRATE, &amp;amp;console);
        /* This console is only used for boot stage */
-       console_set_scope(&amp;amp;console, CONSOLE_FLAG_BOOT);
+//     console_set_scope(&amp;amp;console, CONSOLE_FLAG_BOOT);

        /*
         * tell BL3-1 where the non-secure software image is located
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using Trusty OS then you should also silent the uart in trusty os. In &lt;STRONG&gt;{TRUSTY_OS_PROJECT}/trusty/hardware/nxp:&lt;/STRONG&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;diff --git a/platform/imx/debug.c b/platform/imx/debug.c
index 5670125..dfa8101 100644
--- a/platform/imx/debug.c
+++ b/platform/imx/debug.c
@@ -32,7 +32,7 @@
 #define SMC_SC_SHARED_CONSOLE_CTL SMC_STDCALL_NR(SMC_ENTITY_CONSOLE, 0)
 #define TRUSTY_CONSOLE_DISABLE 0
 #define TRUSTY_CONSOLE_ENABLE 1
-bool no_console = false;
+bool no_console = true;

 static long console_stdcall(struct smc32_args* args) {
     if (args-&amp;gt;smc_nr == SMC_SC_SHARED_CONSOLE_CTL) {
@@ -50,7 +50,7 @@ static struct smc32_entity console_entity = {
 };

 void console_smcall_init(uint level) {
-    no_console = false;
+    no_console = true;
     sm_register_entity(SMC_ENTITY_CONSOLE, &amp;amp;console_entity);
 }
 void platform_dputc(char c) {
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 16 May 2025 09:52:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2098912#M237287</guid>
      <dc:creator>jiluo</dc:creator>
      <dc:date>2025-05-16T09:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101387#M237438</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for the changes Kernel logs stopped.&lt;/P&gt;&lt;P&gt;Still getting Uboot-logs&lt;BR /&gt;&lt;BR /&gt;we tried to disable uboot-logs by changing the Board.h :&amp;nbsp;&lt;SPAN class=""&gt;/include/configs/imx8mp_evk.h&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;+&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A title="#define" target="_blank"&gt;&lt;SPAN class=""&gt;#define&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;CONFIG_DISABLE_CONSOLE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;+&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A title="#define" target="_blank"&gt;&lt;SPAN class=""&gt;#define&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;CONFIG_SILENT_CONSOLE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;+&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;A title="#define" target="_blank"&gt;&lt;SPAN class=""&gt;#define&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;CONFIG_SYS_DEVICE_NULLDEV&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;LI-PRODUCT title="IMX8MPLUS" id="IMX8MPLUS"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;LI-PRODUCT title="ANDROID-AUTO" id="ANDROID-AUTO"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 08:11:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101387#M237438</guid>
      <dc:creator>shivashanka141</dc:creator>
      <dc:date>2025-05-21T08:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101404#M237441</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Could you confirm you have applied the u-boot changes to the right *-defconfig? imx8mp has multiple *defconfig for android, in the example I applied the changes to "imx8mp_evk_android_trusty_dual_defconfig" but yours could be different, make sure you have applied to the right config file.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 08:32:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101404#M237441</guid>
      <dc:creator>jiluo</dc:creator>
      <dc:date>2025-05-21T08:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101439#M237443</link>
      <description>&lt;P&gt;Hi jiluo,&lt;BR /&gt;&lt;BR /&gt;Android BSP version :&amp;nbsp;imx-android-13.0.0_1.2.0.&lt;/P&gt;&lt;P&gt;I am trying on imx8mp-EVK.&lt;BR /&gt;&lt;BR /&gt;Kernel logs stopped and got Android UI&lt;BR /&gt;Still getting u-boot logs&lt;/P&gt;&lt;P&gt;I was able to confirm we have made the changes you have suggested&lt;BR /&gt;&lt;BR /&gt;attached all changes for reference.&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 09:01:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101439#M237443</guid>
      <dc:creator>shivashanka141</dc:creator>
      <dc:date>2025-05-21T09:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101459#M237446</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;As far as I can see, you are missing below two configs:&lt;/P&gt;
&lt;PRE class="lia-code-sample  language-markup"&gt;&lt;CODE&gt;+CONFIG_SILENT_CONSOLE_UNTIL_ENV=y
+CONFIG_SILENT_U_BOOT_ONLY=y&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Please make sure you have applied all the changes in the diff file and better double confirm they are functioning by compiling standalone u-boot config and check they are desired in the generated ".config".&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 09:15:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101459#M237446</guid>
      <dc:creator>jiluo</dc:creator>
      <dc:date>2025-05-21T09:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101465#M237447</link>
      <description>&lt;P&gt;And in the "uboot.patch", I can see you have changes in the "&lt;SPAN&gt;configs/imx8mp_evk_android_trusty_dual_defconfig&lt;/SPAN&gt;&lt;SPAN&gt;". But from the boot logs, this should not be the defconfig you are using. Please make sure these changes have been made to the right config file (&lt;SPAN&gt;imx8mp_evk_android_defconfig?&lt;/SPAN&gt;).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 09:21:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2101465#M237447</guid>
      <dc:creator>jiluo</dc:creator>
      <dc:date>2025-05-21T09:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: imx8mp Android disable serial console</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2103494#M237538</link>
      <description>yes ,Thanks for you for suggesting the changes achieved after updating imx8mp_evk_android_defconfig</description>
      <pubDate>Fri, 23 May 2025 11:13:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx8mp-Android-disable-serial-console/m-p/2103494#M237538</guid>
      <dc:creator>shivashanka141</dc:creator>
      <dc:date>2025-05-23T11:13:12Z</dc:date>
    </item>
  </channel>
</rss>

