Page 1 of 17

SamyGO Extensions [v0.03.6] for c-series

Posted: Sun Oct 31, 2010 3:32 pm
by arris69
here
see README.txt for latest news

WIKI Page

wiki updated 15.Dec.2010: http://wiki.samygo.tv/index.php?title=S ... sions_Pack

04.Dec.2010, known bugs (fixed in svn):
extensions are executed multiple times, may harmless but ugly

edit: some fixes.

http://sourceforge.net/projects/samygo/ ... s%20Packs/
get news also from here

edit: Sa 6. Nov 20:14:41 CET 2010
release candidate is out.

djmount "should" work too
bluetooth stuff not implemented.

delete the file

Code: Select all

/mtd_rwarea/profile
if you tested the older versions!

how to start scripts on tv -> http://forum.samygo.tv/viewtopic.php?f=1&t=974

as you know from wiki the main script for "SamyGO All Extensions" is SamyGO/rcSGO

if you test ssh the password is SamyGO

for mips architecture (like T-TDT5DEUC)
look into file section too.
i don't know nothing about this devices, so module string is:

Code: Select all

2.6.18_SELP.4.2.x-hidtv_sx-mips24ke_nfp_be preempt mod_unload MIPS32_R2 32BIT gcc-4.2
i also have no plan that devices are rooted already or not.
for "luschis" mc is included too (start it with

Code: Select all

mc.sh
).

thnx
arris

Re: SamyGO Extensions [v0.03.6 Concept] for c-series

Posted: Tue Nov 02, 2010 9:11 pm
by bastler0815
Hi,

hmm what do you mean with good knowledge ?! :)

Regards, Bastler

Re: SamyGO Extensions [v0.03.6 Concept] for c-series

Posted: Tue Nov 02, 2010 10:06 pm
by arris69
bastler0815 wrote:Hi,

hmm what do you mean with good knowledge ?! :)

Regards, Bastler
you can configure you shares on windows, you now about permissions and how they work (inheritance, network and local permission), you know how to configure the windows firewall for file share (or you know when to klick yes and when no if you start some network assistant on windows).
you can fix/edit bash scripts and may a bit pcre knowledge, you know a bit about proc and sysfs structure and you can read the output of dmesg (and you know what is relevant and what not)

i really just like to receive "ready to use" fixes for c-series.

arris

Re: SamyGO Extensions [v0.03.6 Concept] for c-series

Posted: Tue Nov 02, 2010 11:03 pm
by arris69
dredkin wrote:Do I need to foramt my usb stick as ext3 or fat goes fine?
fat should be ok. but if its work with ext3 then we can make a bit smaller packages and use symlinks.

Re: SamyGO Extensions [v0.03.6 Concept] for c-series

Posted: Wed Nov 03, 2010 10:52 pm
by arris69
dredkin wrote:...
Ive waited till script finished loading, then I've tried to login to ssh.
TV accepted password, right after that there where much output in ssh window and then TV rebooted...
...
some rc.local is called from tvs /etc/profile?

arris

Re: SamyGO Extensions [v0.03.6 Concept] for c-series

Posted: Thu Nov 04, 2010 3:50 pm
by arris69
dredkin wrote:Yes, you're right. The last line in /etc/profile is

Code: Select all

/etc/rc.local
as fix add the line:

Code: Select all

sed -i -e "s,^\(.*rc\.l*\),# no system init on login\n# \1," /mtd_rwarea/profile
in SamyGO/etc/rc.sysinit (inside if statement after: # bit comfort after login, as last line before fi) but delete also file /mtd_rwarea/profile if present.

full code sequence:

Code: Select all

# bit comfort after login
if [ ! -e /mtd_rwarea/profile ]; then
        cat /etc/profile | sed -e "s#^PATH=.*#PATH=\"$PATH\"#" | \
        sed -e "s#^LD_LIBRARY_PATH=.*#LD_LIBRARY_PATH=\"$LD_LIBRARY_PATH\"#" > /mtd_rwarea/profile
        echo -e "ENV=/dtv/.ashrc\nexport ENV\n" >> /mtd_rwarea/profile
        sed -i -e "s,^\(.*rc\.l*\),# no system init on login\n# \1," /mtd_rwarea/profile
fi
hth
arris