<?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: command line doesn't process wildcards, why?</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290299#M35037</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I think I've got this figured out, but its shakey...&lt;/P&gt;&lt;P&gt;I use buildroot to create my rootfs, and it uses the command line option "-m tune cortex-A9" when building.&lt;/P&gt;&lt;P&gt;For both u-boot (denx) and kernel (freescale git) that option is not used, so I tried manually removing it from&lt;/P&gt;&lt;P&gt;the buildroot scripts...&lt;/P&gt;&lt;P&gt;That fixed it. I can now configure buildroot with cortex-A9 target architecture and the above issue is gone.&lt;/P&gt;&lt;P&gt;Not 100% sure why... is there a bug in "-m tune cortex-A9" with the codesourcery tools?&lt;/P&gt;&lt;P&gt;Or is it possibly an option that must be used for kernel as well?&amp;nbsp; &lt;/P&gt;&lt;P&gt;Has anyone ever used this option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, I'm using Sourcery CodeBench ARM 2013.05.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Feb 2014 22:52:49 GMT</pubDate>
    <dc:creator>EdSutter</dc:creator>
    <dc:date>2014-02-07T22:52:49Z</dc:date>
    <item>
      <title>command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290296#M35034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm running with iMX6 custom hardware, and have been trying to understand why my system isn't&lt;/P&gt;&lt;P&gt;coming up the way it should.&amp;nbsp; I tracked this down to find that the line...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;for i in /etc/init.d/S??* ;do &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;isn't substituting the 'S??*' with the files in /etc/init.d.&amp;nbsp; Then I just tried&lt;/P&gt;&lt;P&gt;ls /bin/m* to see if it would list all files that start with 'm' in /bin.&amp;nbsp; Even that&lt;/P&gt;&lt;P&gt;fails:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;# ls /bin/m*&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ls: /bin/m* : No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm guessing there is some misconfiguration in busybox, but I haven't found anything.&lt;/P&gt;&lt;P&gt;-- EDIT on Jan 13 --&lt;/P&gt;&lt;P&gt;I managed to get this to work but have no clue why...&lt;/P&gt;&lt;P&gt;First, note that I am using buildroot to create my rootfs (kernel and uboot are mainline)...&lt;/P&gt;&lt;P&gt;In my buildroot configuration, I had "Target Architecture Variant" set to cortex-A9 (since I'm working with iMX6).&lt;/P&gt;&lt;P&gt;When I backed this setting off to A8, for some bizarre reason that fixed this issue.&lt;/P&gt;&lt;P&gt;What is it about A8/A9 that would cause regular expression wildcard processing in the shell not to work?&lt;/P&gt;&lt;P&gt;I sure would like to understand this one.&lt;/P&gt;&lt;P&gt;-- End EDIT --&lt;/P&gt;&lt;P&gt;Anyone ever have to deal with this ?&lt;/P&gt;&lt;P&gt;Tx&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ed Sutter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 20:52:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290296#M35034</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-01-07T20:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290297#M35035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which shell are you running? (echo $0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 00:13:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290297#M35035</guid>
      <dc:creator>LeonardoSandova</dc:creator>
      <dc:date>2014-01-10T00:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290298#M35036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;(resending this worded differently to see if my recent failures were caused by the forum's spam filter...)&lt;/P&gt;&lt;P&gt;"echo $0" just shows -sh.&amp;nbsp; According to busybox menuconfig, it appears to be ash.&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 20:24:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290298#M35036</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-01-10T20:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290299#M35037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I think I've got this figured out, but its shakey...&lt;/P&gt;&lt;P&gt;I use buildroot to create my rootfs, and it uses the command line option "-m tune cortex-A9" when building.&lt;/P&gt;&lt;P&gt;For both u-boot (denx) and kernel (freescale git) that option is not used, so I tried manually removing it from&lt;/P&gt;&lt;P&gt;the buildroot scripts...&lt;/P&gt;&lt;P&gt;That fixed it. I can now configure buildroot with cortex-A9 target architecture and the above issue is gone.&lt;/P&gt;&lt;P&gt;Not 100% sure why... is there a bug in "-m tune cortex-A9" with the codesourcery tools?&lt;/P&gt;&lt;P&gt;Or is it possibly an option that must be used for kernel as well?&amp;nbsp; &lt;/P&gt;&lt;P&gt;Has anyone ever used this option?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, I'm using Sourcery CodeBench ARM 2013.05.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Feb 2014 22:52:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290299#M35037</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-02-07T22:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290300#M35038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;P&gt;Had your issue got resolved? If yes, we are going to close the discussion in 3 days. If you still need help please feel &lt;/P&gt;&lt;P&gt;free to contact Freescale.&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Yixing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 06:33:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290300#M35038</guid>
      <dc:creator>YixingKong</dc:creator>
      <dc:date>2014-02-20T06:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: command line doesn't process wildcards, why?</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290301#M35039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yixing,&lt;/P&gt;&lt;P&gt;I did resolve this, but as has been the case with a few other questions I post to the forum, I answered it myself (see above).&lt;/P&gt;&lt;P&gt;I've done it a few times with other questions that I've self-answered; but I hesitate to mark my own response as the "correct answer".&lt;/P&gt;&lt;P&gt;I guess I'll just do that so you can manage the state of the question better...&lt;/P&gt;&lt;P&gt;Ed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Feb 2014 14:43:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/command-line-doesn-t-process-wildcards-why/m-p/290301#M35039</guid>
      <dc:creator>EdSutter</dc:creator>
      <dc:date>2014-02-20T14:43:28Z</dc:date>
    </item>
  </channel>
</rss>

