| 1 | #!/bin/sh
|
|---|
| 2 |
|
|---|
| 3 | export OPERA_MULTITAP=NO
|
|---|
| 4 | export OPERA_SHOW_STATUSWINDOW=NO
|
|---|
| 5 | export OPERA_FB_BORDERWIDTH=0
|
|---|
| 6 | export OPERA_SHOW_IMEWINDOW=YES
|
|---|
| 7 | export OPERA_SHOW_NAVIGATIONWINDOW=NO
|
|---|
| 8 | export OPERA_SHOW_MOUSEPOINTER=NO
|
|---|
| 9 | export OPERA_ESC_EXIT=YES
|
|---|
| 10 | export FREETYPE_FONT_SET=YES
|
|---|
| 11 | export OPERA_ROOT=/var/swap/titanplugins/hbbtv/opera
|
|---|
| 12 | export OPERA_FB_SIZE=1280x720
|
|---|
| 13 | export OPERA_DIR="${OPERA_ROOT}/opera_dir"
|
|---|
| 14 | export OPERA_HOME="${OPERA_ROOT}"/opera_home/
|
|---|
| 15 | export OPERA_FONTS="${OPERA_ROOT}"/fonts
|
|---|
| 16 | export OPERA_WIDGETS="${OPERA_ROOT}"/widgets
|
|---|
| 17 | export LD_LIBRARY_PATH=/var/swap/titanplugins/hbbtv/opera:${LD_LIBRARY_PATH}
|
|---|
| 18 |
|
|---|
| 19 | STARTPAGE="${OPERA_ROOT}"/directfb-ui/startpage.html
|
|---|
| 20 | #STARTPAGE="http://itv.mit-xperts.com/zdfmediathek/index.php"
|
|---|
| 21 | STARTPAGE="http://hbbtv.ardmediathek.de/hbbtv-ard/mediathek/"
|
|---|
| 22 | STARTPAGE="http://itv.mit-xperts.com/hbbtvtest/index.php"
|
|---|
| 23 | STARTPAGE="http://hbbtv.clipfish.de/start.php"
|
|---|
| 24 | #STARTPAGE="tvportal.humaxdigital.com"
|
|---|
| 25 | EXPATH=${OPERA_ROOT}/bin EXBIN=opera EXEC_FLAG="-u ${STARTPAGE} --dfb:mode=1280x720,no-debug,no-vt,no-vt-switch $@"
|
|---|
| 26 |
|
|---|
| 27 | #cp ${OPERA_ROOT}/portal_userjs/user_potral.js ${OPERA_ROOT}/opera_dir/userjs/user.js
|
|---|
| 28 | cp ${OPERA_ROOT}/portal_userjs/input_opera.ini ${OPERA_ROOT}/opera_home/input.ini
|
|---|
| 29 | echo 0 > /proc/cpu/alignment
|
|---|
| 30 | exec ${EXPATH}/${EXBIN} ${EXEC_FLAG}
|
|---|
| 31 | echo 1 > /proc/cpu/alignment
|
|---|
| 32 |
|
|---|
| 33 | exit 1
|
|---|
| 34 |
|
|---|