



If you are using the gentoo-sources 2.4.20-r5 that might be the problem. In this version the framebuffer size is not set correctly due to an other patch trying to deal with an other problem. Take a look at page 2 inSo, my question is what is involved in getting Silent Mode working? I have the line on the kernel config, I have patched the system with http://www.aichler.net/gentoo/bootsplash/. What could be preventing silent mode from working?
Code: Select all
kernel: Looking for splash picture.... silenjpeg size 20209 bytes, does not fit into framebuffer.schutten wrote:Yesterday I tried to install the patch for the progressbar (at http://www.aichler.net/gentoo/bootsplash/).
The progressbar is working, but on bootup the animations are not being played (also no "press F2" message appears)...
On shutdown all seems fine: animation is played + "press F2" message appeared.
So the silent mode is basically working (including progress bar), but no animations...
Tonight I'll play some more to see what is wrong...
Code: Select all
lostech fbmngplay # make
gcc -02 -Wall -c -o fbmngplay.o fbmngplay.c
gcc -02 -Wall -c -o messages.o messages.c
gcc -02 -Wall -c -o mng.o mng.c
gcc -02 -Wall -c -o console.o console.c
gcc -02 -Wall -L/usr/lib -o fbmngplay -L/usr/lib fbmngplay.o messages.o mng.o console.o -lmng -lz -lm
gcc -02 -Wall -L/usr/lib -static -o fbmngplay.static -L/usr/lib fbmngplay.o messages.o mng.o console.o /usr/lib/libmng-mini.a /usr/lib/libz.a -lm
gcc: /usr/lib/libmng-mini.a: No such file or directory
make: *** [fbmngplay.static] Error 1
michaCompiling a static fbmngplay
----------------------------
If you keep /usr on a different partition to /, then you will need to use the
static version of fbmngplay. This is so it does not depend on any libraries that
are on a partition that may not have yet been mounted. To rid yourself of the
compile error, edit the line in Makefile
LIBSS = $(LIBDIR)/libmng-mini.a $(LIBDIR)/libz.a -lm
To
LIBSS = $(LIBDIR)/libmng.a $(LIBDIR)/libjpeg.a $(LIBDIR)/libz.a -lm
Then copy fbmngplay.static to /sbin/fbmngplay
schutten wrote:Yesterday I tried to install the patch for the progressbar (at http://www.aichler.net/gentoo/bootsplash/).
The progressbar is working, but on bootup the animations are not being played (also no "press F2" message appears)...
On shutdown all seems fine: animation is played + "press F2" message appeared.
So the silent mode is basically working (including progress bar), but no animations...
Tonight I'll play some more to see what is wrong...
hmmz.. I'll take that back.. Now it ain't working no moresuddenly the shutdown screen worked.. Dunno why.. I din't do anything, execpt reboot it a couple of times