<div dir="ltr">Kernel is 4.2.5, i thought despite what was advertised it was possible to run the driver 4.0.4+ (since they said one just has to rebuild the open source driver with new kernel).<br>Isn&#39;t that possible to download old kernel and load the driver with it? (i have no idea how, just making a supposition).<br>Otherwise i will just have to see if the tech support team can update the driver...<br>Thanks anyway</div><div class="gmail_extra"><br><div class="gmail_quote">2016-01-22 1:00 GMT+01:00 Rick Stevens <span dir="ltr">&lt;<a href="mailto:ricks@alldigital.com" target="_blank">ricks@alldigital.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 01/21/2016 03:49 PM, Rick Stevens wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On 01/21/2016 03:09 PM, thibaut noah wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Thanks for the enlightment.<br>
I manage to get the driver from the modules.gz archive and i made a new<br>
initframs using dracut --add-drivers but modprobe still cannot find it,<br>
possible that the module will indeed not work :/<br>
The error is saying :<br>
could not insert &#39;rr272x_1x&#39; : Exec format error<br>
</blockquote>
<br>
The driver was built incorrectly for this version of the system. Just<br>
why, I don&#39;t know. It did get put into the correct directory or<br>
modprobe/insmod wouldn&#39;t find it at all.<br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Did i miss something? the driver is a .ko file<br>
</blockquote>
<br>
Just because it&#39;s a .ko file doesn&#39;t mean it&#39;s compatible with a 4.x<br>
kernel. Odds are that it isn&#39;t. You should browse High Point&#39;s web<br>
site and see if there IS a version of that driver that&#39;s 4.x compatible.<br>
<br>
Sorry I can&#39;t be of more help.<br>
</blockquote>
<br></span>
I just looked at High Point&#39;s website and they have driver source compatible with kernels up to 4.0.4. Dunno which kernel you&#39;re running.<br>
My F23 box is running 4.3.3-300, my F22 is running 4.2.8-200. They&#39;re<br>
both too new for that driver.<div><div class="h5"><br>
<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
2016-01-21 18:53 GMT+01:00 Rick Stevens &lt;<a href="mailto:ricks@alldigital.com" target="_blank">ricks@alldigital.com</a><br>
&lt;mailto:<a href="mailto:ricks@alldigital.com" target="_blank">ricks@alldigital.com</a>&gt;&gt;:<br>
<br>
    On 01/21/2016 04:02 AM, thibaut noah wrote:<br>
<br>
        updating this, i did some testing on the sh file and i found<br>
        where the<br>
        issue is coming from.<br>
        There is two for loops (at least two that concerns me) and the<br>
code<br>
        inside is never executed.<br>
        Condition is :<br>
        for dir in [23].*;do<br>
            [ -d $dir/kernel/fs ] || continue<br>
<br>
        I&#39;m a bit lost here, what is this 23 number? it cannot be fedora<br>
        number<br>
        as this driver is the open source version of the fedora 17<br>
driver.<br>
        Pretty sure if i modify the condition with a correct one<br>
everything<br>
        should work properly<br>
<br>
<br>
    F17? Well, that&#39;s probably the issue. What you&#39;re seeing is an<br>
attempt<br>
    to walk down the various /lib/modules/2.* and /lib/modules/3.* trees<br>
    to install the driver. If you&#39;re on F22 or F23, you probably don&#39;t<br>
HAVE<br>
    2.* or 3.* kernel trees. You have 4.x kernel trees.<br>
<br>
    You could try changing that line from:<br>
<br>
             for dir in [23].*; do<br>
<br>
    To:<br>
<br>
             for dir in [234].*; do<br>
<br>
    That would include the 4.x kernel trees. I don&#39;t know if the<br>
module will<br>
    work, though as it seems to be written for quite old kernels. YMMV<br>
<br>
        2016-01-21 12:21 GMT+01:00 thibaut noah &lt;<a href="mailto:thibaut.noah@gmail.com" target="_blank">thibaut.noah@gmail.com</a><br>
        &lt;mailto:<a href="mailto:thibaut.noah@gmail.com" target="_blank">thibaut.noah@gmail.com</a>&gt;<br>
        &lt;mailto:<a href="mailto:thibaut.noah@gmail.com" target="_blank">thibaut.noah@gmail.com</a> &lt;mailto:<a href="mailto:thibaut.noah@gmail.com" target="_blank">thibaut.noah@gmail.com</a>&gt;&gt;&gt;:<br>
<br>
<br>
             Hello guys, got this weird error trying to install my raid<br>
        driver :<br>
<br>
             Start to install the driver rr272x_1x.ko of rr272x_1x.<br>
             Finish installing the kernel module rr272x_1x.ko.<br>
             Loading rr272x_1x driver module rr272x_1x<br>
             modprobe: FATAL: Module rr272x_1x not found.<br>
<br>
             Checked with lsmod driver does not appear tough the<br>
        installation is<br>
             finished (checked the sh file, modprobe is running at the<br>
end).<br>
             After a little read of the sh file i can confirm that the<br>
        driver is<br>
             in /etc/rc.modules (it appears to be with sd_mod and that&#39;s<br>
        all).<br>
             chmod on rc.modules in the sh file is successfull (chmod<br>
755).<br>
             The failing part seems to be this :<br>
<br>
             elif [ &quot;${MODULE}&quot; = &quot;rr272x_1x&quot; -o &quot;${MODULE}&quot; =<br>
        &quot;rr274x_3x&quot; -o<br>
               &quot;${MODULE}&quot; = &quot;rr276x&quot; -o &quot;${MODULE}&quot; = &quot;rr278x&quot; ] ; then<br>
             ( cd /lib/modules/<br>
             for dir in [23].*; do<br>
             [ -d $dir/kernel/fs ] || continue<br>
             if [ -f /boot/initrd-$dir.img ]; then<br>
             mv /boot/initrd-$dir.img /boot/initrd-$dir.img.bak<br>
             # do not include mvsas in initrd, as the udev and so will<br>
        load the<br>
             driver<br>
             mkinitrd --builtin=mvsas /boot/initrd-$dir.img $dir<br>
             elif [ -f /boot/initramfs-$dir.img ]; then<br>
             mv /boot/initramfs-$dir.img /boot/initramfs-$dir.img.bak<br>
             # do not include mvsas in initramfs, as the udev and so<br>
        will load<br>
             the driver<br>
             dracut /boot/initramfs-$dir.img $dir<br>
             fi<br>
             done<br>
<br>
             Can someone give me a hint on how to do what needs to be<br>
        done? I&#39;m<br>
             not familiar with drivers on unix systems so i&#39;m a bit<br>
        lost, full sh<br>
             file is attached if needed, thanks.<br>
<br>
</blockquote></blockquote></div></div><span class="">
----------------------------------------------------------------------<br>
- Rick Stevens, Systems Engineer, AllDigital    <a href="mailto:ricks@alldigital.com" target="_blank">ricks@alldigital.com</a> -<br>
- AIM/Skype: therps2        ICQ: 226437340           Yahoo: origrps2 -<br>
-                                                                    -<br></span>
-        Polygon: A dead parrot (With apologies to John Cleese)      -<div class="HOEnZb"><div class="h5"><br>
----------------------------------------------------------------------<br>
-- <br>
users mailing list<br>
<a href="mailto:users@lists.fedoraproject.org" target="_blank">users@lists.fedoraproject.org</a><br>
To unsubscribe or change subscription options:<br>
<a href="https://admin.fedoraproject.org/mailman/listinfo/users" rel="noreferrer" target="_blank">https://admin.fedoraproject.org/mailman/listinfo/users</a><br>
Fedora Code of Conduct: <a href="http://fedoraproject.org/code-of-conduct" rel="noreferrer" target="_blank">http://fedoraproject.org/code-of-conduct</a><br>
Guidelines: <a href="http://fedoraproject.org/wiki/Mailing_list_guidelines" rel="noreferrer" target="_blank">http://fedoraproject.org/wiki/Mailing_list_guidelines</a><br>
Have a question? Ask away: <a href="http://ask.fedoraproject.org" rel="noreferrer" target="_blank">http://ask.fedoraproject.org</a><br>
</div></div></blockquote></div><br></div>