Author Topic: Special kernel install woes...  (Read 7560 times)

zhanght

  • Newbie
  • *
  • Posts: 8
    • View Profile
    • http://
Special kernel install woes...
« Reply #15 on: June 18, 2004, 01:24:07 pm »
Hi, All and tumnus! I\'m just a zarusu 5600 newbie in China.

My Z have a pxa250 and can not decode divx clips with sound enabled
and that why i want to try your \"special kernel\"
But seems curently, Sharp only supply 1.0 CN ROM
and AFAIK Sharp still not annouced
that whether they will release new ROM like 1.32 support Chinese
As you know, i18n support and some apps like \'Chinese handwriting inputmethod\' is really important for me,
so i can not upgrade to any other languege 1.32 ROM!
My question is : Can you tell me howto upgrade my Z to your \'special kernel\' directly from 1.0 ROM?

Anyway, thanks in advance
SL5600 with Sharp ROM 1.00-CN and \'special kernel 1.3\'
iPaq 3870 with familiar unstable, foldable keyboard
Nec Mobilegear 730f with redhat 6 mips_le port and linux-vr-2.4.2
Bcm1250 Swarm with gentoo-mips and 2.4.20-smp
D-Link DCF-660W WIFI,Panisonic 256MB Hi-SD card,Simpletech 256/512MB CF Card

tumnus

  • Hero Member
  • *****
  • Posts: 1176
    • View Profile
    • http://www.cpinkney.org.uk
Special kernel install woes...
« Reply #16 on: June 18, 2004, 02:59:48 pm »
Do you have the files for the Chinese Sharp ROM? If so you could just try installing the Special kernel and see if it works. If you have the Chinese ROM files you can always go back if it doesn\'t. The upgrade instructions are on the download page. I can\'t remember what language support was compiled into the Special kernel.
# Search the Zaurus Howtos ## Search the Zaurus FAQs ## Find Z software at ELSI #
--------------------
UK SL5500 with Sharp ROM 3.13, SL5600 with Sharp ROM 1.32 - SuSE 9.0 Pro, Windows XP Home
Qualendar for Calendar and Todo
Socket Bluetooth CF Card (Rev F), Kingmax 512MB MMC Card, Palm Tungsten T Stylus,
Pretec CF->Smartmedia Adapter, Semsons Universal Battery Extender

zhanght

  • Newbie
  • *
  • Posts: 8
    • View Profile
    • http://
Special kernel install woes...
« Reply #17 on: June 20, 2004, 06:00:11 am »
Dear tumnus:  Thanks!
Now, i got a VAX 231... from dhry test

kernel working perfect on my 5600! load games like \'Snails\' more faster!
but seems video playback with sound  still not very well
i just using mplayer come with \'Kino2\' and using \'tonyolsen\'\'s script
\"-vop rotate=1, scale=236:-2,rotate=6 -geometry 87:2 -framedrop \" with it.

so, can you tell me what\'s player you\'re using on your 5600 for mpg4 and divx clips? and how about the \'fps\' on your Z?
SL5600 with Sharp ROM 1.00-CN and \'special kernel 1.3\'
iPaq 3870 with familiar unstable, foldable keyboard
Nec Mobilegear 730f with redhat 6 mips_le port and linux-vr-2.4.2
Bcm1250 Swarm with gentoo-mips and 2.4.20-smp
D-Link DCF-660W WIFI,Panisonic 256MB Hi-SD card,Simpletech 256/512MB CF Card

tumnus

  • Hero Member
  • *****
  • Posts: 1176
    • View Profile
    • http://www.cpinkney.org.uk
Special kernel install woes...
« Reply #18 on: June 20, 2004, 02:16:52 pm »
I use the mplayer that was distributed with MPlayerShell, which doesn\'t seem to be available anymore, but I guess the kino version should be just as fast.

Are those options the ones you use for playback? If they are, that is probably what is slowing it down. If you have to scale or rotate movies, any Zaurus will struggle, so you must re-encode movies to fit on the 320x240 screen and be in landscape (normal) orientation as see on your desktop PC. I use mencoder from mplayer on my Linux box to re-encode movies. With the win32-codecs installed it can re-encode just about anything. I have a really simple script to re-encode movies (the rotation is to rotate movies encoded for PocketPC, that always seems to be encoding in portrait orientation):

Code: [Select]
#!/bin/bash



if [ "$#" -lt 2 -o "$#" -gt 4 ]; then

   echo "Usage: zvidencode [0|1](Rotation) [mono(defa

ult)|stereo|copy]"

   echo "e.g. zvidencode my_movie.avi my_zaurus_movie.mpg 0 stereo"

   exit 1

fi



if [ "$4" = "stereo"  ]; then

   oacopts="mp3lame -lameopts mode=0"

elif [ "$4" = "copy" ]; then

   oacopts="copy"

else

   oacopts="mp3lame -lameopts cbr:br=64"

fi



if [ "$3" = "1" ]; then

   mencoder "$1" -vop scale=320:,rotate=2 -o "$2" -oac $oacopts -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=128 -ofps 15 -sws 2

else

   mencoder "$1" -vop scale="320:" -o "$2" -oac $oacopts -ovc lavc -lavcopts vcodec=mpeg4:vhq:vbitrate=128:autoaspect -ofps 15 -sws 2

fi
# Search the Zaurus Howtos ## Search the Zaurus FAQs ## Find Z software at ELSI #
--------------------
UK SL5500 with Sharp ROM 3.13, SL5600 with Sharp ROM 1.32 - SuSE 9.0 Pro, Windows XP Home
Qualendar for Calendar and Todo
Socket Bluetooth CF Card (Rev F), Kingmax 512MB MMC Card, Palm Tungsten T Stylus,
Pretec CF->Smartmedia Adapter, Semsons Universal Battery Extender