I have plymouth source from git and have already done autoconf automake ./configure make on fedora 10. It builds everything and the .so files are generated. I have been using the spinfinity plugin as a test. I modified 1 line in the animation function so that the spinny throbber image should appear at 1/4 screen width rather than center(a simple test to start with). <br>
<br>line 206 in spinfinity plugin.c<br>[code]<br>area.width / 4.0 - width / 2.0,<br>[/code]<br><br>When I:<br>1) copy the spinfinity.so file that was generated in the .libs directory to /usr/lib64/plymouth<br>2) copy the spinfinity folder to /usr/share/plymouth/spinfinity<br>
3) /usr/sbin/plymouth-set-default-plugin spinfinity<br>4) /usr/libexec/plymouth/plymouth-update-initrd<br><br>it does not work. I get the fallback to the white-blue progressbar. What is the proper way to install a plugin? I know there isn&#39;t any documentation on plugins yet, but I might be able to help somewhat if I could even test some of my own code.<br>
<br>Also, I am familiar with usplash. Is it possible to make a plugin from a single makefile in a plugin directory somewhere else on my harddrive rather than having to make the whole source? I can barely understand Makefiles as is but all this automake .in .am stuff just further adds to the confusion.<br>