Page 60 of 178 FirstFirst ... 1050585960616270110160 ... LastLast
Results 1,181 to 1,200 of 3542

Thread: Enigma 2 by The_ripper - TEST -

  1. #1181
    V.I.P 4@@@@'s Avatar
    Join Date
    Mar 2010
    Posts
    106
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Ok. I'll try to add setxenv support to the E2 from The_Ripper. Then it will be possible to switch from original firmware im flash to E2 from HDD or usb stick (kernel loaded via tftp). Normally this will not use any serial action, but it is better to have it working before fiddeling around. Maybe this weekend I'll have something to upload.

  2. #1182
    Member
    Join Date
    Sep 2010
    Posts
    60
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by 4@@@@ View Post
    Ok. I'll try to add setxenv support to the E2 from The_Ripper. Then it will be possible to switch from original firmware im flash to E2 from HDD or usb stick (kernel loaded via tftp). Normally this will not use any serial action, but it is better to have it working before fiddeling around. Maybe this weekend I'll have something to upload.
    If I understand this correctly does that mean one could boot to E2 directly from USB stick without replacing factory firmware?

  3. #1183
    Junior Member
    Join Date
    Jul 2009
    Posts
    23
    Thanks
    0
    Thanked 0 Times in 0 Posts
    The idea from 4@@@@ is that (if i understand it fully) that he is updating the xenv environment with setxenv commands to be able to boot from Yamon bootloader the linux kernel (and of course the ramdisk (ramfs) for the filesystem in which is the init script, to mount the USB or HDD key/disks) directly from tftp server running on you computer.

    So, to be able to boot from a USB/HDD you need to have the linux kernel (vmlinux) on your computer and a tftp server running on the same computer.

  4. #1184
    V.I.P 4@@@@'s Avatar
    Join Date
    Mar 2010
    Posts
    106
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Yes is like shklifo wrote. setxenv is found.

    What we have to do is:
    # For E2 from HDD
    setxenv -f /dev/mtdblock0 -k y.gateway 192.168.1.1
    setxenv -f /dev/mtdblock0 -k y.bootserver 192.168.1.100
    setxenv -f /dev/mtdblock0 -k y.subnetmask "255.255.255.0"
    setxenv -f /dev/mtdblock0 -k y.ipaddr "192.168.1.101"
    setxenv -f /dev/mtdblock0 -k y.start -v "net init;net initpci;net up; load -b tftp://192.168.1.100/vme2hdd.bin 0x90020000; go 0x90020000"
    setxenv -f /dev/mtdblock0 -k a.linux_cmd -v "console=ttyS0,115200 root=/dev/hdb1 rw rootdelay=5 mem=108m"

    vme2hdd.bin is the special kernel.

    To get back you need the setxenv and

    # Boot from RAM
    # Original
    setxenv -f /dev/mtdblock0 -k y.start -v "xrpc 0xac080090; load zbf 0xb3000000; go"
    setxenv -f /dev/mtdblock0 -k a.linux_cmd -v "console=ttyS0,115200 root=/dev/hda1 rw rootdelay=5 mem=108m"

    You can replace /dev/hdb1 with the one of you usb stick eg /dev/sda1 and it will boot from there.

    You have to put alle Files from /MMP out of the patch.bin. This is explained in the other thread how to extract it. https://www.satpimps.co.uk/showthread.php?t=140689

    You need a tftp server on the server 192.168.1.100.

    The kernel and setxenv will be uploaded in some moments. here right click and save as!! It is a rar archive.

    YOU DO THIS ON YOUR OWN RISK - and don't do anything without serial console access!
    Last edited by 4@@@@; 14-10-2010 at 09:46 PM.

  5. #1185
    V.I.P
    Join Date
    May 2009
    Location
    Turkey
    Posts
    329
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by 4@@@@ View Post
    Yes is like shklifo wrote. setxenv is found.

    What we have to do is:
    # For E2 from HDD
    setxenv -f /dev/mtdblock0 -k y.gateway 192.168.1.1
    setxenv -f /dev/mtdblock0 -k y.bootserver 192.168.1.100
    setxenv -f /dev/mtdblock0 -k y.subnetmask "255.255.255.0"
    setxenv -f /dev/mtdblock0 -k y.ipaddr "192.168.1.101"
    setxenv -f /dev/mtdblock0 -k y.start -v "net init;net initpci;net up; load -b tftp://192.168.1.100/vme2hdd.bin 0x90020000; go 0x90020000"
    setxenv -f /dev/mtdblock0 -k a.linux_cmd -v "console=ttyS0,115200 root=/dev/hdb1 rw rootdelay=5 mem=108m"

    vme2hdd.bin is the special kernel.

    To get back you need the setxenv and

    # Boot from RAM
    # Original
    setxenv -f /dev/mtdblock0 -k y.start -v "xrpc 0xac080090; load zbf 0xb3000000; go"
    setxenv -f /dev/mtdblock0 -k a.linux_cmd -v "console=ttyS0,115200 root=/dev/hda1 rw rootdelay=5 mem=108m"

    You can replace /dev/hdb1 with the one of you usb stick eg /dev/sda1 and it will boot from there.

    You have to put alle Files from /MMP out of the patch.bin. This is explained in the other thread how to extract it. https://www.satpimps.co.uk/showthread.php?t=140689

    The kernel and setxenv will be uploaded in some moments. here right click and save as!! It is a rar archive.

    YOU DO THIS ON YOUR OWN RISK - and don't do anything without serial console access!
    tftp server and serial consol necessary.

  6. #1186
    V.I.P
    Join Date
    Jan 2009
    Posts
    255
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Just small update,
    STV0903/STV6110A driver has been compiled and integrated, just is left for testing in our team , so users with premium+ who wants to test/play with e2 will soon be able to do so.
    (For this time just 1 tuner supported ...)

    sattomy has done some more works on mediaplayer part and dvbmediasink plugin, but he can say more if he wants.

  7. #1187
    Junior Member
    Join Date
    Oct 2010
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts
    @ The_Ripper
    I wanted to know if e2 can become the official firmware OPENSAT

  8. #1188
    Junior Member
    Join Date
    Sep 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts
    No, Opensat working on an other new firmware

  9. #1189
    Junior Member
    Join Date
    Apr 2010
    Posts
    27
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by pearlpeter View Post
    No, Opensat working on an other new firmware
    Who said OPENSAT releases new firmware?

  10. #1190
    V.I.P
    Join Date
    Aug 2009
    Posts
    211
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Icon3

    as The_ripper said, Premium+ DVB-S2 tuner driver fixed :

    Code:
    root@AZBox:~# lsmod
     
    em8634dvb 525136 17 - Live 0xc89a0000 (PF)
    stv090x 68560 0 - Live 0xc88d2000
    stv6110x 7088 0 - Live 0xc88af000
    cx24116 84336 1 em8634dvb, Live 0xc88ea000
    em8xxx 2514624 1 em8634dvb, Live 0xc8b49000 (PF)
    llad 124320 2 em8634dvb,em8xxx, Live 0xc88b2000 (P)
    irvfd 13280 1 em8634dvb, Live 0xc8887000 (P)
    tangox_ehci_hcd 44464 0 - Live 0xc8891000
    stv6110x - DVB-S2 Driver for Premium+

    stv090x - Demodulator Premium+

    cx24116 - DVB-S2 Driver for Elite/Premium

    Stay tunned

  11. #1191
    Member
    Join Date
    Dec 2008
    Posts
    74
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by damo View Post
    Who said OPENSAT releases new firmware?
    Carp I believe.

    Opensat hired new coders from another country who are currently working on building a better firmware.

  12. #1192
    Member
    Join Date
    Oct 2008
    Posts
    40
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by chrissat View Post
    Carp I believe.

    Opensat hired new coders from another country who are currently working on building a better firmware.
    The neverending story.:9898:
    :smilielol5:

  13. #1193
    V.I.P paul01609's Avatar
    Join Date
    Dec 2004
    Posts
    1,315
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Opensat should be paying these guys

  14. #1194
    Junior Member
    Join Date
    Oct 2010
    Posts
    14
    Thanks
    0
    Thanked 0 Times in 0 Posts
    [QUOTE = paul01609; 758.910] Opensat dovrebbero pagare questi ragazzi [/ QUOTE]

    paul01609 excuse enigma2 official firmware can be OPENSAT
    thanks: Rispetto-051:

  15. #1195
    Junior Member
    Join Date
    Sep 2010
    Location
    Magyarország
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question

    Elite-premium tuner driver ,media player integrated test ?
    Thanks

  16. #1196
    Junior Member
    Join Date
    Apr 2010
    Posts
    18
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hope to be a dvb-t release soon, for me is priority, I don't use the azbox as mediaplayer

    Thanks to the developers

  17. #1197
    V.I.P
    Join Date
    Aug 2009
    Posts
    211
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Icon3

    Load of CPU running playing xvid avi file on AzBox HD E2 MediaPlayer :

    1.9 i 1.5 % CPU

    2120 *1786 root * * S * * 126m124.6 * 0 *1.9 /usr/bin/enigma2
    1789 *1786 root * * S * * 126m124.6 * 0 *1.5 /usr/bin/enigma2
    2128 *2126 root * * R * * 2836 *2.7 * 0 *1.1 top
    2121 *1786 root * * S * * 126m124.6 * 0 *0.7 /usr/bin/enigma2
    2122 *1786 root * * S * * 126m124.6 * 0 *0.5 /usr/bin/enigma2
    2123 *1786 root * * S * * 126m124.6 * 0 *0.2 /usr/bin/enigma2
    1850 *1786 root * * S * * 126m124.6 * 0 *0.2 /usr/bin/enigma2
    2125 *1613 root * * S * * 2840 *2.7 * 0 *0.2 telnetd
    1857 * * 2 root * * SW * * * 0 *0.0 * 0 *0.2 [usb-storage]
    1791 *1786 root * * S * * 126m124.6 * 0 *0.0 /usr/bin/enigma2
    1855 *1786 root * * S N * 126m124.6 * 0 *0.0 /usr/bin/enigma2
    1552 * * 1 root * * S * *10036 *9.6 * 0 *0.0 smbd -D
    1579 *1552 root * * S * *10036 *9.6 * 0 *0.0 smbd -D

    Stay tuned

  18. #1198
    Junior Member bluedawe's Avatar
    Join Date
    Oct 2010
    Location
    Trencin
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by MickeySa View Post
    as The_ripper said, Premium+ DVB-S2 tuner driver fixed :

    Code:
    root@AZBox:~# lsmod
     
    em8634dvb 525136 17 - Live 0xc89a0000 (PF)
    stv090x 68560 0 - Live 0xc88d2000
    stv6110x 7088 0 - Live 0xc88af000
    cx24116 84336 1 em8634dvb, Live 0xc88ea000
    em8xxx 2514624 1 em8634dvb, Live 0xc8b49000 (PF)
    llad 124320 2 em8634dvb,em8xxx, Live 0xc88b2000 (P)
    irvfd 13280 1 em8634dvb, Live 0xc8887000 (P)
    tangox_ehci_hcd 44464 0 - Live 0xc8891000
    stv6110x - DVB-S2 Driver for Premium+

    stv090x - Demodulator Premium+

    cx24116 - DVB-S2 Driver for Elite/Premium

    Stay tunned
    Isn't it good idea to group all current downloads to this topic on one place?
    Maybe I'm really bad in googling, but I can not find DVB-S2 driver for elite/premium newer than that you posted 04-10-2010, 10:51 PM (on page 47)

    Tried this, but didn't find any programs....

  19. #1199
    Senior Member MoRpHiUS_x's Avatar
    Join Date
    Jun 2010
    Posts
    115
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by bluedawe View Post
    Isn't it good idea to group all current downloads to this topic on one place?
    Maybe I'm really bad in googling, but I can not find DVB-S2 driver for elite/premium newer than that you posted 04-10-2010, 10:51 PM (on page 47)

    Tried this, but didn't find any programs....
    Visit this thread.

    https://www.satpimps.co.uk/showthread.php?t=139902

    In this thread are all files.

  20. #1200
    V.I.P hfmls's Avatar
    Join Date
    May 2009
    Location
    Portugal
    Posts
    1,819
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by MickeySa View Post
    Load of CPU running playing xvid avi file on AzBox HD E2 MediaPlayer :

    1.9 i 1.5 % CPU

    2120 *1786 root * * S * * 126m124.6 * 0 *1.9 /usr/bin/enigma2
    1789 *1786 root * * S * * 126m124.6 * 0 *1.5 /usr/bin/enigma2
    2128 *2126 root * * R * * 2836 *2.7 * 0 *1.1 top
    2121 *1786 root * * S * * 126m124.6 * 0 *0.7 /usr/bin/enigma2
    2122 *1786 root * * S * * 126m124.6 * 0 *0.5 /usr/bin/enigma2
    2123 *1786 root * * S * * 126m124.6 * 0 *0.2 /usr/bin/enigma2
    1850 *1786 root * * S * * 126m124.6 * 0 *0.2 /usr/bin/enigma2
    2125 *1613 root * * S * * 2840 *2.7 * 0 *0.2 telnetd
    1857 * * 2 root * * SW * * * 0 *0.0 * 0 *0.2 [usb-storage]
    1791 *1786 root * * S * * 126m124.6 * 0 *0.0 /usr/bin/enigma2
    1855 *1786 root * * S N * 126m124.6 * 0 *0.0 /usr/bin/enigma2
    1552 * * 1 root * * S * *10036 *9.6 * 0 *0.0 smbd -D
    1579 *1552 root * * S * *10036 *9.6 * 0 *0.0 smbd -D

    Stay tuned
    via mediaplayer GUI ?
    can you tell me about .srt subtitle support please?
    is it supported already?
    thank you

Page 60 of 178 FirstFirst ... 1050585960616270110160 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •