<?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: How does an A-core application compiled with s32g274 automatically start and run on the board in S32G</title>
    <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2114099#M13685</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/231473"&gt;@sdx111&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your confirmation.&lt;/P&gt;
&lt;P&gt;I have checked the BSP35, your automatically started application may be run with the assist of the following method&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;vi /etc/systemd/system/startup.service
Put the following contents into the file that created above.

[Unit]
Description=Startup
After=network.target
[Service]
Type=oneshot
ExecStart=$PATH_TO_YOUR_APP
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

Saved and run the following command:
systemctl daemon-reload
systemctl enable mystartup.service
systemctl start mystartup.service&lt;/LI-CODE&gt;
&lt;P&gt;I have tested it on the BSP35, and the application could be correctly brought up, note it is only a reference sample, you may implement it according to different requirements.&lt;/P&gt;
&lt;P&gt;I hope it will help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Chenyin&lt;/P&gt;</description>
    <pubDate>Wed, 11 Jun 2025 03:54:24 GMT</pubDate>
    <dc:creator>chenyin_h</dc:creator>
    <dc:date>2025-06-11T03:54:24Z</dc:date>
    <item>
      <title>How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2112835#M13666</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;How can the application program compiled with the A core of s32g274 be deployed to the board to start and run automatically?&lt;/SPAN&gt;&lt;SPAN class=""&gt; What methods are there?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 12:47:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2112835#M13666</guid>
      <dc:creator>sdx111</dc:creator>
      <dc:date>2025-06-09T12:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113207#M13672</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/231473"&gt;@sdx111&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank for your post,&lt;/P&gt;
&lt;P&gt;May I know you are running BSP from the A53 side? would you mind providing some more details of your requirements? from my experience, your own application could be built directly on the board, or cross-compiled on the PC, then copy the executable image to the board to run it under Linux.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Chenyin&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 03:49:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113207#M13672</guid>
      <dc:creator>chenyin_h</dc:creator>
      <dc:date>2025-06-10T03:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113354#M13674</link>
      <description>My own application could be cross-compiled on the PC, then copy the executable image to the board to run it under Linux.Next, how to enable my own application to start and run automatically when the board is powered on next time? Should it be placed in the rc.local file? Or how to handle it?</description>
      <pubDate>Tue, 10 Jun 2025 07:18:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113354#M13674</guid>
      <dc:creator>sdx111</dc:creator>
      <dc:date>2025-06-10T07:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113467#M13676</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/231473"&gt;@sdx111&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank for your reply.&lt;/P&gt;
&lt;P&gt;I feel glad that you application had been successfully cross-built, for running it automatically on the RFS, it is rather a Yocto question, and from my experience, it may depend on the BSP version used, may I know which version BSP is used in your test?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Chenyin&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2025 09:06:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113467#M13676</guid>
      <dc:creator>chenyin_h</dc:creator>
      <dc:date>2025-06-10T09:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113611#M13677</link>
      <description>BSP35.0</description>
      <pubDate>Tue, 10 Jun 2025 12:39:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2113611#M13677</guid>
      <dc:creator>sdx111</dc:creator>
      <dc:date>2025-06-10T12:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: How does an A-core application compiled with s32g274 automatically start and run on the board</title>
      <link>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2114099#M13685</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/231473"&gt;@sdx111&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your confirmation.&lt;/P&gt;
&lt;P&gt;I have checked the BSP35, your automatically started application may be run with the assist of the following method&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;vi /etc/systemd/system/startup.service
Put the following contents into the file that created above.

[Unit]
Description=Startup
After=network.target
[Service]
Type=oneshot
ExecStart=$PATH_TO_YOUR_APP
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target

Saved and run the following command:
systemctl daemon-reload
systemctl enable mystartup.service
systemctl start mystartup.service&lt;/LI-CODE&gt;
&lt;P&gt;I have tested it on the BSP35, and the application could be correctly brought up, note it is only a reference sample, you may implement it according to different requirements.&lt;/P&gt;
&lt;P&gt;I hope it will help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Chenyin&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 03:54:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32G/How-does-an-A-core-application-compiled-with-s32g274/m-p/2114099#M13685</guid>
      <dc:creator>chenyin_h</dc:creator>
      <dc:date>2025-06-11T03:54:24Z</dc:date>
    </item>
  </channel>
</rss>

