Trying to make new image for an estarbox ES900HD Help needed

    Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

    • Trying to make new image for an estarbox ES900HD Help needed

      Dear all.

      Can anyone guide me to someone hwo can help me finishing up building an image for this box. I have tryed every image availebel, but all of them hangs on boot. Im trying to compile on a fedora 12 core.
      The box uses a sti 7111 chip, which is the reason im writing in here. Ive got the original dev image from the manifactorer. They gave it to me becuase they dont support it anymore, but i know a lot of people who would really like an updated image for this box.

      Hope someone can help me!

      Best regards.
      Apebk
    • I know that its not compatible on the spark part. But the enigma part should be the same. The configuration of the box is this:

      Basic Information

      450 MHz ST40 CPU SH4 Core. STi 7111 based.

      Linux Operating System (ENIGMA 2)

      Linux DVB-API compatible.

      LED Pannel Display
      Ethernet 10/100 MBit compatible interface


      MPEG-2 / H.264 Hardware decoding
      Tuner: DVB-S2


      1 x Tuner

      1 x Smartcard-Reader ISO 7816with programmable clock speed NAGRA IRDETO CONAX CRYPTOWORKS SECA
      VIACCESS VIDEOGUARD DRE TONGFANG BULCRYPT


      10/100Mbit Ethernet Interface

      1 x Scart (RGB,CVBS)

      HDMI Output

      1 x USB 2.0 external USB

      S/PDIF Interface for digital bit stream out (AC-3)

      2 MByte NOR for Secure Bootloader.256MByte Nand , 2 x 128 MByte RAM

      unlimited channel lists for TV/Radio

      EPG (electronic program guide)

      multiple LNB-Switching control (supports DiSEqC)

      OSD in many languages and skin-support



      DVB-S2 Tuner:

      Frequency Range 950 -- 2150 MHz

      Demodulation DVB-S (QPSK); DVB-S2 (8PSK,QPSK)

      Symbol rate DVB-S: 2--45 Mbaud/s, SCPC/ MCPC

      DVB-S2: 10 – 31 Mbaud/s (8PSK) , 10 –30 Mbaud/s (QPSK)



      Video decoder:

      Video Compression MPEG-2 , H.246 ,VC-1

      Video Formats 4:3 / 16:9

      Letterbox for 4:3 TV-Device

      Capable Resolution: (1080P,1080I, 720P, 480P/576P, 480I/576I)



      Audio decoder:

      Audio Compression MPEG1 , MPEG2, MP3 ,AC3,DD+,AAC,AAC+,WMA9

      Audio Mode Dual (main/sub), Stereo

      Frequency: 32 kHz, 44.1 kHz, 48 kHz, 16 kHz, 22.05 kHz, 24 kHz



      Video parameter:

      Input Level FBAS 1 Vss +/- 0.3 dB on 75 Ohm

      Teletext filter in conformity with ETS 300 472 Standard

      Output: CVBS, HDMI



      USB

      1 x USB 2.0 Host



      DiSEqC

      Count of active satellite position DiSEqC 1.0/1.2 SAT POSITION / SAT OPTION

      DiSEqC - Rotor Control



      2.software function

      Full HD (Full HDTV 1080i, 1080p)

      Operating System: Base LINUX

      Display: LED Display

      PVR Function

      Timeshift-Function (Pause/Play)

      Media Player

      Wireless LAN: USB Type IEEE 802.11b,g,n (Wireless USB-WLAN) RT3070 RT73 RTL8188

      MPEG2 SD/HD, MPEG4 P10 h.264/AVC SD/HD Xvid, MKV

      MPEG AAC, AC3, WAV, AIFF, WMA

      Resolution: 480i/480p/576i/576p/720p/1080i/1080p

      Subtitle: SRT, SMI, TXT

      Photo: JPEG, BMP

      Plugin Support

      EPG (electronic program guide)

      OSD , Skin

      DiSEqC 1.0,1.1 and1.2

      When flashing software for it, its the same as enigma2 on amiko alien 8900HD with uImage and e2jjfs2.img.

      I was thinking that i would try to compile a duckbox for it. But I need to find out how much I shall copy from the original image to make it work.
    • Googi schrieb:

      Ich persönlich hab nix übrig für solche Clone-Boxen. :thumbdown:

      ich auch nicht, naja freier Markt jeder kann vom jedem was kaufen und ätzen ;)
      mich interessiert nur was die chinesen da gemacht haben ob das eigene Port ist oder auf wyplay/TDT Port ist.
    • This box is not bought with clone box in mind at all! The dealer presented it as a completely new box. I and allot of others bought this box because of it specs contra prize. Now the firm (Estar) dont support thees boxes anymore. This is why I would like to compile a new image for it!

      I do not like clones either (my other boxes is VU+ Duo and Medialink BlackPanther). As I said, I was not aware that this was a clone. But im trying to make the best of it!

      I will fully understand if people dont want to give support to clone boxes, but ive still got my hopes up.

      I cant attach the e2jffs2.img because of the file size ( help me out if im not understanding your request correctly)
    • achne das ist ein Image aus dem TDT

      i think the easy way to Buil Image for you box is to use the Link e.g

      and really you dont need to build the whole image (kernel + drivers +apps) if the drivers are running good on the box

      telnet to your box to found whitch kernel is running on the orig image

      uname -a
      with the corresponding kernel version you can build a spark7111 image.

      * to mount the e2jffs2.img on your desktop:
      - first install mtd-utils

      Quellcode

      1. mknod /tmp/mtdblock0 b 31 0
      2. modprobe loop
      3. losetup /dev/loop0 e2jffs2.img
      4. modprobe mtdblock
      5. modprobe block2mtd
      6. # Note the ,128KiB is needed (on 2.6.26 at least) to set the eraseblock size.
      7. echo "/dev/loop0,128KiB" > /sys/module/block2mtd/parameters/block2mtd
      8. modprobe jffs2
      9. # check dmesg
      10. mount -t jffs2 /tmp/mtdblock0 /media/jffs2
      11. # check dmesg again - if the above mount results in any errors there is a problem...
      Alles anzeigen


      dont forget at end to unmount and clean up

      Quellcode

      1. umount /media/jffs2
      2. modprobe -r block2mtd
      3. modprobe -r mtdblock
      4. losetup -d /dev/loop0

      Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von mohousch ()

    Unsere Partnerboards

    ^
    Flag Counter