<?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>topic Re: USB Mount/ Umount configuration in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022378#M151132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your configuration it's not working for me. As per this thread (&lt;A href="https://community.nxp.com/thread/516945"&gt;USB Storage is not mount in IMX8QM&lt;/A&gt;&amp;nbsp;). I closed this thread now,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VinothS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Nov 2019 13:19:33 GMT</pubDate>
    <dc:creator>vinothkumars</dc:creator>
    <dc:date>2019-11-08T13:19:33Z</dc:date>
    <item>
      <title>USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022375#M151129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear NXP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I done manually for mount , umount the usb stick. But, I need&amp;nbsp;&lt;STRONG&gt;Mount and unmount the usb automatically in android 9&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Mount :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;mount -t vfat /dev/block/sda /mnt/media_rw/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Umount:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;umount /mnt/media_rw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;VinothS,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 15:04:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022375#M151129</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2019-11-07T15:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022376#M151130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You could try with the following procedure applied by other user:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;STRONG style="font-size: 15px;"&gt;Please have the following change.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG style="font-size: 15px;"&gt;android_source/device/fsl&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;diff --git a/imx8m/evk_8mm/fstab.freescale b/imx8m/evk_8mm/fstab.freescale&lt;/STRONG&gt;&lt;BR /&gt;index 72d412fd..89c5e84a 100644&lt;BR /&gt;--- a/imx8m/evk_8mm/fstab.freescale&lt;BR /&gt;+++ b/imx8m/evk_8mm/fstab.freescale&lt;BR /&gt;@@ -3,6 +3,7 @@&lt;BR /&gt; # The filesystem that contains the filesystem checker binary (typically /system) cannot&lt;BR /&gt; # specify MF_CHECK, and must come before any filesystems that do specify MF_CHECK&lt;/P&gt;&lt;P&gt;+/devices/platform/30b50000.mmc/mmc_host/* /mnt/media_rw/extsd vfat defaults voldmanaged=extsd:auto&lt;BR /&gt; /devices/platform/32e40000.usb/ci_hdrc.0/* auto auto defaults voldmanaged=usb:auto&lt;BR /&gt; /dev/block/by-name/system / ext4 ro,barrier=1 wait,slotselect&lt;BR /&gt; /dev/block/by-name/userdata /data ext4 nosuid,nodev,nodiratime,noatime,nomblk_io_submit,noauto_da_alloc,errors=panic wait,formattable,quota,fileencryption=software,reservedsize=128M&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;diff --git a/imx8m/evk_8mm/init.rc b/imx8m/evk_8mm/init.rc&lt;/STRONG&gt;&lt;BR /&gt;index 8a5ee83f..f6dfe004 100644&lt;BR /&gt;--- a/imx8m/evk_8mm/init.rc&lt;BR /&gt;+++ b/imx8m/evk_8mm/init.rc&lt;BR /&gt;@@ -20,6 +20,8 @@ on init&lt;BR /&gt; # Support legacy paths&lt;BR /&gt; symlink /sdcard /mnt/sdcard&lt;BR /&gt; symlink /sdcard /storage/sdcard0&lt;BR /&gt;+ mkdir /mnt/media_rw/extsd 0755 system system&lt;BR /&gt;+ symlink /mnt/media_rw/extsd /storage/extsd&lt;/P&gt;&lt;P&gt;# setup the global environment&lt;BR /&gt; export CORE_REGISTER_FILE /vendor/etc/core_register&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG style="font-size: 15px;"&gt;android_source/frameworks/base&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 15px;"&gt;&lt;STRONG&gt;diff --git a/core/res/res/xml/storage_list.xml b/core/res/res/xml/storage_list.xml&lt;/STRONG&gt;&lt;BR /&gt;index ceebdccdafe..88d2dfe7cba 100644&lt;BR /&gt;--- a/core/res/res/xml/storage_list.xml&lt;BR /&gt;+++ b/core/res/res/xml/storage_list.xml&lt;BR /&gt;@@ -25,4 +25,8 @@&lt;BR /&gt; android:mountPoint="/storage/sdcard"&lt;BR /&gt; android:storageDescription="@string/storage_usb"&lt;BR /&gt; android:primary="true" /&amp;gt;&lt;BR /&gt;+ &amp;lt;storage&lt;BR /&gt;+ android:mountPoint="/storage/extsd"&lt;BR /&gt;+ android:storageDescription="@string/storage_sd_card"&lt;BR /&gt;+ android:primary="true" /&amp;gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 15px;"&gt; &amp;lt;/StorageList&amp;gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG style="font-size: 15px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;DIV class=""&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P&gt;Hope this will be useful for you.&lt;BR /&gt;Best regards!&lt;BR /&gt;/Carlos&lt;BR /&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 23:39:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022376#M151130</guid>
      <dc:creator>CarlosCasillas</dc:creator>
      <dc:date>2019-11-07T23:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022377#M151131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Carlos,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it applicable for imx8q?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;VinothS,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 01:05:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022377#M151131</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2019-11-08T01:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022378#M151132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your configuration it's not working for me. As per this thread (&lt;A href="https://community.nxp.com/thread/516945"&gt;USB Storage is not mount in IMX8QM&lt;/A&gt;&amp;nbsp;). I closed this thread now,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;VinothS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 13:19:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022378#M151132</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2019-11-08T13:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022379#M151133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had tried on imx6q. It doesn't work, too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2020 02:27:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022379#M151133</guid>
      <dc:creator>pandaerliu</dc:creator>
      <dc:date>2020-07-03T02:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: USB Mount/ Umount configuration</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022380#M151134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/pandaerliu"&gt;pandaerliu&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give me some more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;VinothS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jul 2020 03:30:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/USB-Mount-Umount-configuration/m-p/1022380#M151134</guid>
      <dc:creator>vinothkumars</dc:creator>
      <dc:date>2020-07-03T03:30:30Z</dc:date>
    </item>
  </channel>
</rss>

