Good point. My next quest will be to do so. I might ask for info this week-end if I get stuck.sectroyer wrote: Ahh so for you "normal terminal to start up under the current screen" is xtermDid you compile xterm yourself using TVs toolchain and libs ?
About the sound. SDL so libs link to GPlayer process basic sound subroutines. GPlayer doesn't run until a native application/game is run. AudioInit it is pretty simple.
However from here https://jkry.org/ouluhack/HackingSamsun ... ebugOutput:
Code: Select all
 102 btsec mod ld
 103 Insmod Broadcom BT PCM Driver
 104 BTPCM btpcm_ibiza_init: ibiza_pcm_buf_left_phy_addr(Default)=0x32d20000
 105 mdrv_emac mod ld
 106 BTPCM btpcm_ibiza_init: ibiza_pcm_buf_size(Default)=86016
 107 BTPCM btpcm_ibiza_init: ibiza_pcm_left_write_phy_addr(Default)=0x32df0b14
 108 ##### System ExeBTPCM btpcm_ibiza_init: ibiza_enable_mark_addr(Default)=0x32df0b66
 109 cution!!! ##### btpcm mod ld
 On my machine I have very similar values. However on my tv the values are being inserted by SLauncher. Not sure if this helps but you might want to populate these parameters before trying sound under X. Buffer size might differ depending on model.
Code: Select all
/mtd_exe/SLauncher root /bin/sh -c echo 0x32d20000 > /sys/module/btpcm/parameters/ibiza_pcm_buf_left_phy_addr 
/mtd_exe/SLauncher root /bin/sh -c echo 0x32df0b14 > /sys/module/btpcm/parameters/ibiza_pcm_left_write_phy_addr 
/mtd_exe/SLauncher root /bin/sh -c echo 0x15000 > /sys/module/btpcm/parameters/ibiza_pcm_buf_size 
/mtd_exe/SLauncher root /bin/sh -c echo 0x32df0b66 > /sys/module/btpcm/parameters/ibiza_enable_mark_addr 

