<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 30, 2018 at 12:48 PM, Russell Haley <span dir="ltr"><<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="gmail-">On Fri, Mar 30, 2018 at 7:54 AM, Joel Sherrill <span dir="ltr"><<a href="mailto:joel@rtems.org" target="_blank">joel@rtems.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 30, 2018 at 1:05 AM, Russell Haley <span dir="ltr"><<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Thanks Joel. I haven't looped back to test if it was my mistake or something else so I'll assume my mistake for now.<div><br></div><div>Either way, I'm able to build and run the examples_v2 repository against erc32, so... YAY!</div><div><br></div><div>I'd like to build Lua 5.3, do I just build the static lib "a" file and include it in a test application? Would that happen in RTEMS proper or in waf? I need sleep now but any suggestions would be grand.</div></div></blockquote><div><br></div><div>Porting Lua was an early GSoC project. Some information is here.:</div><div><br></div><div><a href="https://devel.rtems.org/wiki/Packages/LUA" target="_blank">https://devel.rtems.org/wiki/P<wbr>ackages/LUA</a><br></div><div><br></div><div>That effort predates the RSB but the proper solution would be to have</div><div>an RSB recipe for it. My understanding is that it was quite easy to build</div><div>for RTEMS. </div><div><br></div><div><a href="https://github.com/lparam/rtems-liblua" target="_blank">https://github.com/lparam/rtem<wbr>s-liblua</a> appears to be enough to help you<br></div><div>build it.</div><div><br></div><div>Needs an RSB recipe though. :)</div></div></div></div></blockquote><div><br></div></span><div>That would be great. I've managed to get lua 5.3 built and installed from the github repo by lparam. I've run out of time but will clean it up tonight. The SGOC link seems to be pointing to a modified/extended lua build and the link to the source code is dead. <br><br></div><div>I'll try modifying the hello world example tonight as well and see what I get. <br></div></div></div></div></blockquote><div><br>So building liblua.a was pretty straightforward as a "Ken" has already done the heavy lifting in the makefile. I can call gmake as:<br><br>gmake ARCH=sparc-rtems5 BSP=erc32 BSP_BASE=~/development/rtems/5<br><br></div><div>and "make install" puts liblua.a in the correct directory. But I am getting a linking errors with my example code that seem to imply a missing math library? I copied the RTEMS hello example and added the Lua C example from the Programming in Lua book (4th edition for 5.3). The files and build output follow. <br><br></div><div>//test-lua.c<br>#include <bsp.h><br>#include <lua.h><br>#include <lualib.h><br>#include <lauxlib.h><br><br>//This is the reference to the lua interpreter<br>lua_State* L;<br><br>rtems_task Init(<br>    rtems_task_argument ignored<br>)<br>{<br>    lua_State *L = luaL_newstate();<br>    luaL_openlibs(L);<br>    char buff[256] = "print('Hello from Lua')";<br>    //Test of basic lua functionality<br>    int error;<br>    error = luaL_loadstring(L, buff);<br>    if(error)<br>    {<br>        fprintf(stderr, "%s\n", lua_tostring(L,-1));<br>        lua_pop(L,1);<br>    }<br>    lua_close(L);<br>    return 0;<br>}<br><br>/* NOTICE: the clock driver is explicitly disabled */<br>#define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER<br>#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER<br>#define CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM<br><br>#define CONFIGURE_RTEMS_INIT_TASKS_TABLE<br>#define CONFIGURE_MAXIMUM_TASKS 1<br><br>#define CONFIGURE_INIT<br>#include <rtems/confdefs.h><br>/* end of file */<br><br><br></div><div>#wscript<br># Copyright 2018 Russell Haley (<a href="mailto:russ.haley@gmail.com">russ.haley@gmail.com</a>)<br># Copyright 2013 Gedare Bloom (<a href="mailto:gedare@rtems.org">gedare@rtems.org</a>)<br>#<br># This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.<br>#<br><br># Waf build script for a Lua test harness<br>import rtems_waf.rtems as rtems<br><br>def build(bld):<br>    rtems.build(bld)<br><br>    bld.includes = ['. /home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/include']<br><br>    bld.read_stlib('lua', paths=['/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/'])<br>    bld(features = 'c cprogram',<br>        target = 'test-lua.exe',<br>        source = ['test-lua.c'],<br>        use = 'lua')<br><br><br></div><div>#output<br></div><div><br>russellh@g1 ~/d/e/lua53-test> waf -v<br>Waf: Entering directory `/usr/home/russellh/development/examples-v2/build/sparc-rtems5-erc32'<br>[2/3] Linking ../build/sparc-rtems5-erc32/lua53-test/test-lua.exe<br>22:33:27 runner ['/home/russellh/development/rtems/5/bin/sparc-rtems5-gcc', '-qrtems', '-B/home/russellh/development/rtems/5/sparc-rtems5/lib/', '-B/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/', '--specs', 'bsp_specs', '-mcpu=cypress', '-mcpu=cypress', '-ffunction-sections', '-ffunction-sections', '-fdata-sections', '-fdata-sections', '-Wl,--gc-sections', 'lua53-test/test-lua.c.2.o', '-o/usr/home/russellh/development/examples-v2/build/sparc-rtems5-erc32/lua53-test/test-lua.exe', '-Wl,-Bstatic', '-L/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib', '-llua', '-Wl,-Bdynamic']<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lobject.o): In function `numarith':<br>lobject.c:(.text+0x570): undefined reference to `powf'<br>lobject.c:(.text+0x598): undefined reference to `floorf'<br>lobject.c:(.text+0x5c4): undefined reference to `fmodf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lvm.o): In function `luaV_tointeger':<br>lvm.c:(.text+0x308): undefined reference to `floorf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lvm.o): In function `luaV_execute':<br>lvm.c:(.text+0x43cc): undefined reference to `fmodf'<br>lvm.c:(.text+0x4640): undefined reference to `floorf'<br>lvm.c:(.text+0x47f8): undefined reference to `powf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_sin':<br>lmathlib.c:(.text+0xd8): undefined reference to `sinf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_cos':<br>lmathlib.c:(.text+0x130): undefined reference to `cosf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_tan':<br>lmathlib.c:(.text+0x188): undefined reference to `tanf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_asin':<br>lmathlib.c:(.text+0x1e0): undefined reference to `asinf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_acos':<br>lmathlib.c:(.text+0x238): undefined reference to `acosf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_atan':<br>lmathlib.c:(.text+0x2b8): undefined reference to `atan2f'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_floor':<br>lmathlib.c:(.text+0x460): undefined reference to `floorf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_ceil':<br>lmathlib.c:(.text+0x4ec): undefined reference to `ceilf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_fmod':<br>lmathlib.c:(.text+0x654): undefined reference to `fmodf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_modf':<br>lmathlib.c:(.text+0x720): undefined reference to `ceilf'<br>lmathlib.c:(.text+0x738): undefined reference to `floorf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_sqrt':<br>lmathlib.c:(.text+0x7dc): undefined reference to `sqrtf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_log':<br>lmathlib.c:(.text+0x8b8): undefined reference to `logf'<br>lmathlib.c:(.text+0x904): undefined reference to `log2f'<br>lmathlib.c:(.text+0x93c): undefined reference to `log10f'<br>lmathlib.c:(.text+0x954): undefined reference to `logf'<br>lmathlib.c:(.text+0x964): undefined reference to `logf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_exp':<br>lmathlib.c:(.text+0x9c4): undefined reference to `expf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_cosh':<br>lmathlib.c:(.text+0xf70): undefined reference to `coshf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_sinh':<br>lmathlib.c:(.text+0xfc8): undefined reference to `sinhf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_tanh':<br>lmathlib.c:(.text+0x1020): undefined reference to `tanhf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_pow':<br>lmathlib.c:(.text+0x108c): undefined reference to `powf'<br>/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/liblua.a(lmathlib.o): In function `math_log10':<br>lmathlib.c:(.text+0x11c4): undefined reference to `log10f'<br>collect2: error: ld returned 1 exit status<br><br>Waf: Leaving directory `/usr/home/russellh/development/examples-v2/build/sparc-rtems5-erc32'<br>Build failed<br> -> task in 'test-lua.exe' failed with exit status 1: <br>    {task 34394256160: cprogram test-lua.c.2.o -> test-lua.exe}<br>['/home/russellh/development/rtems/5/bin/sparc-rtems5-gcc', '-qrtems', '-B/home/russellh/development/rtems/5/sparc-rtems5/lib/', '-B/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib/', '--specs', 'bsp_specs', '-mcpu=cypress', '-mcpu=cypress', '-ffunction-sections', '-ffunction-sections', '-fdata-sections', '-fdata-sections', '-Wl,--gc-sections', 'lua53-test/test-lua.c.2.o', '-o/usr/home/russellh/development/examples-v2/build/sparc-rtems5-erc32/lua53-test/test-lua.exe', '-Wl,-Bstatic', '-L/home/russellh/development/rtems/5/sparc-rtems5/erc32/lib', '-llua', '-Wl,-Bdynamic']<br><br><br></div><div> Cheers, <br></div><div>Russ<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>Thanks everyone!<br><br></div><div>Russ<br></div><div><div class="gmail-h5"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>--joel</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><br></div><div>Thanks!</div><div>Russ</div></div><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-HOEnZb"><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-h5"><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Mar 28, 2018 at 6:48 AM, Joel Sherrill <span dir="ltr"><<a href="mailto:joel@rtems.org" target="_blank">joel@rtems.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span>On Wed, Mar 28, 2018 at 12:51 AM, Russell Haley <span dir="ltr"><<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div class="gmail_quote">---------- Forwarded message ----------<br>From: <b class="gmail_sendername">Russell Haley</b> <span dir="ltr"><<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a>></span><br>Date: Tue, Mar 27, 2018 at 10:45 PM<br>Subject: Re: Quickstart Build instructions<br>To: Sebastian Huber <<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brai<wbr>ns.de</a>><br><br><br><div dir="ltr"><br></div><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-HOEnZb"><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-h5"><div class="gmail_extra"><div class="gmail_quote">On Tue, Mar 27, 2018 at 10:36 PM, Sebastian Huber <span dir="ltr"><<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brai<wbr>ns.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Please send e-mails to the mailing list.</blockquote><div><span style="color:rgb(34,34,34)">Sorry, my mistake. </span> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span><br>
<br>
On 28/03/18 07:34, Russell Haley wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Where did the directory 5 come from in these instructions? Are you missing a mkdir?<br>
</blockquote>
<br></span>
The<br>
<br>
--prefix=/usr/home/chris/devel<wbr>opment/rtems/5<br>
<br>
<br>
directory is created by the sb-set-builder. It is the base installation directory.</blockquote><div>I was getting a directory not writeable error until I created the folder myself (even after correcting for my username). I'll try again later, but it builds if I create the 5/ directory.</div></div></div></div></div></div></div></blockquote><div><br></div></span><div>What is your $HOME? Mine is usually /home/joel. If yours is similar, then</div><div>not being able to write into /usr as non-root is expected.</div><div><br></div><div>Perhaps the documentation should say ${HOME}/development/rtems/5?</div><div><br></div><div>FWIW Around OAR, we tend to use ${HOME}/rtems-work/tools/5 or for</div><div>wider deployments /rtems/5</div><div><br></div><div>--joel <br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255h5"><div dir="ltr"><div class="gmail_quote"><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-HOEnZb"><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-h5"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>Thanks, </div><div><br></div><div>Russ</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"> </blockquote><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
$cd<br>
$ mkdir -p development/rtems<br>
$cd  development/rtems<br>
$ git clone git://<a href="http://git.rtems.org/rtems-source-builder.git" rel="noreferrer" target="_blank">git.rtems.org/rtems-sour<wbr>ce-builder.git</a> <<a href="http://git.rtems.org/rtems-source-builder.git" rel="noreferrer" target="_blank">http://git.rtems.org/rtems-so<wbr>urce-builder.git</a>>  rsb<br>
   ...<br>
$cd  rsb<br>
$ ./source-builder/sb-check<br>
   ...<br>
$cd  rtems<br>
$ ../source-builder/sb-set-build<wbr>er\<br>
     --prefix=/usr/home/chris/deve<wbr>lopment/rtems/55/rtems-sparc<br>
   ...<br>
<br>
Thanks,<br>
Russ<span><span><br>
<br>
On Tue, Mar 27, 2018 at 10:28 PM, Russell Haley <<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a> <mailto:<a href="mailto:russ.haley@gmail.com" target="_blank">russ.haley@gmail.com</a>>> wrote:<br>
<br>
    Thanks!<br>
    Russ<br>
<br>
    On Tue, Mar 27, 2018 at 10:23 PM, Sebastian Huber<br>
    <<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brai<wbr>ns.de</a><br></span></span><span><span>
    <mailto:<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedd<wbr>ed-brains.de</a>>> wrote:<br>
<br>
        On 28/03/18 07:14, Russell Haley wrote:<br>
<br>
            Hi, the quick start indicates using ./bootstrap -p, but<br>
            using said parameter only results in the error/hep output.<br>
            Using ./bootstrap without any parameters started the the<br>
            process for me?<br>
<br>
            <a href="https://docs.rtems.org/branches/master/user/start/index.html" rel="noreferrer" target="_blank">https://docs.rtems.org/branche<wbr>s/master/user/start/index.html</a><br>
            <<a href="https://docs.rtems.org/branches/master/user/start/index.html" rel="noreferrer" target="_blank">https://docs.rtems.org/branch<wbr>es/master/user/start/index.htm<wbr>l</a>><br>
<br>
<br>
        Sorry for the confusion. I updated the documentation:<br>
<br>
        <a href="https://git.rtems.org/rtems-docs/commit/?id=fc9db4c26eb66b1b94f79617d850d2b0f161c00e" rel="noreferrer" target="_blank">https://git.rtems.org/rtems-do<wbr>cs/commit/?id=fc9db4c26eb66b1b<wbr>94f79617d850d2b0f161c00e</a><br>
        <<a href="https://git.rtems.org/rtems-docs/commit/?id=fc9db4c26eb66b1b94f79617d850d2b0f161c00e" rel="noreferrer" target="_blank">https://git.rtems.org/rtems-d<wbr>ocs/commit/?id=fc9db4c26eb66b1<wbr>b94f79617d850d2b0f161c00e</a>><br>
<br>
        --         Sebastian Huber, embedded brains GmbH<br>
<br>
        Address : <a href="https://maps.google.com/?q=Dornierstr.+4,+D-82178+Puchheim&entry=gmail&source=g" target="_blank">Dornierstr. 4, D-82178 Puchheim</a>,<br></span></span>
        <<a href="https://maps.google.com/?q=dress+:+Dornierstr.+4,+D-82178+Puchheim,&entry=gmail&source=g" rel="noreferrer" target="_blank">https://maps.google.com/?q=dr<wbr>ess+:+Dornierstr.+4,+D-82178+P<wbr>uchheim,&entry=gmail&source=g</a>><br>
        Germany<br>
        Phone   : <a href="tel:%2B49%2089%20189%2047%2041-16" value="+4989189474116" target="_blank">+49 89 189 47 41-16</a> <tel:%2B49%2089%20189%2047%204<wbr>1-16><br>
        Fax     : <a href="tel:%2B49%2089%20189%2047%2041-09" value="+4989189474109" target="_blank">+49 89 189 47 41-09</a> <tel:%2B49%2089%20189%2047%204<wbr>1-09><br>
        E-Mail  : <a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brain<wbr>s.de</a><br>
        <mailto:<a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedd<wbr>ed-brains.de</a>><span><span><br>
        PGP     : Public key available on request.<br>
<br>
        Diese Nachricht ist keine geschäftliche Mitteilung im Sinne<br>
        des EHUG.<br>
<br>
<br>
<br>
</span></span></blockquote><span><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-m_5734220094976580901HOEnZb"><div class="gmail-m_6795598876624074249m_8486726218378186051gmail-m_-8559023846247151255m_-7602255738298284870m_-8415335185604616955gmail-m_5734220094976580901h5">
<br>
-- <br>
Sebastian Huber, embedded brains GmbH<br>
<br>
Address : <a href="https://maps.google.com/?q=Dornierstr.+4,+D-82178+Puchheim,+Germany&entry=gmail&source=g" target="_blank">Dornierstr. 4, D-82178 Puchheim, Germany</a><br>
Phone   : <a href="tel:%2B49%2089%20189%2047%2041-16" value="+4989189474116" target="_blank">+49 89 189 47 41-16</a><br>
Fax     : <a href="tel:%2B49%2089%20189%2047%2041-09" value="+4989189474109" target="_blank">+49 89 189 47 41-09</a><br>
E-Mail  : <a href="mailto:sebastian.huber@embedded-brains.de" target="_blank">sebastian.huber@embedded-brain<wbr>s.de</a><br>
PGP     : Public key available on request.<br>
<br>
Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.<br>
<br>
</div></div></span></blockquote></div><br></div>
</div></div></div><br></div>
<br></div></div>______________________________<wbr>_________________<br>
users mailing list<br>
<a href="mailto:users@rtems.org" target="_blank">users@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman<wbr>/listinfo/users</a><br></blockquote></div><br></div></div>
</blockquote></div><br></div>
</div></div></blockquote></div><br></div></div>
</blockquote></div></div></div><br></div></div>
</blockquote></div><br></div></div>