Re: SamyGO project logo - WIP
Posted: Wed Nov 21, 2012 4:26 pm
thnx, will check if tv will accept it after convert but need first to root it again....
Nice onearris69 wrote:no comments...
here is just the picture offset set to 0, the fadeout effect seems to be default on. can't remember how it looks like with original logo (it was the first thing what i turned off as i got the tvsbav1 wrote:Nice onearris69 wrote:no comments.... Question regarding fade-out effect - was it already present with E8XXX TV original boot-splash logo, or was there some kind of additional tinkering involved, to achieve such result? I don't think it's an cam-related artifact, it's looking too good for that..
Code: Select all
if [ -e /mtd_rwarea/FastLogoOff ]; then
echo "Skip FastLogo..."
if [ -e /mtd_rwarea/UPGRADE_START ]; then
echo "Run FastLogo for SWU"
insmod /mtd_exe/FastLogo/FastLogo.ko n1st_BMP_file=/mtd_exe/FastLogo/FastLogo.bmp n1st_effect_array=0x1,0,0,1,1 n2st_effect_array=0x40,1000 n3st_effect_array=0x11,0,0,0,1 gfx_base=0xAC800000 pdp_start_delay=1000
fi
else
echo "Run FastLogo..."
insmod /mtd_exe/FastLogo/FastLogo.ko n1st_BMP_file=/mtd_exe/FastLogo/FastLogo.bmp n1st_effect_array=0x1,0,0,1,1 n2st_effect_array=0x40,1000 n3st_effect_array=0x11,0,0,0,1 gfx_base=0xAC800000 pdp_start_delay=1000 model_type=6 model_start_delay=1000
fi
this logo stuff works on every device different, on MST10 there are 3 .bmp files with different resolutions and the kernel module is loaded without any parameter.I've just tried to replace the boot splash logo in BD-D6900 (I'll post some howto when I get it figured out completely - right now I still have some minor problems with scaling/aspect ratio to reslolve), but - in BD-D6900, boot logo it just appears & disappears (no fade-out).
Code: Select all
#Run FastLogo
#source /mtd_exe/Fastlogo.sh
if [ -e /mtd_rwarea/FastLogoOff ]; then
echo "Skip FastLogo..."
if [ -e /mtd_rwarea/UPGRADE_START ]; then
echo "Run FastLogo for SWU"
insmod /mtd_exe/FastLogo/FastLogo.ko logo_file=/mtd_rwarea/SamyGO.bmp pos_x="0" pos_y="0"
fi
else
echo "Run FastLogo..."
insmod /mtd_exe/FastLogo/FastLogo.ko logo_file=/mtd_rwarea/SamyGO.bmp pos_x="0" pos_y="0"
fi