Dies ist eine mobil optimierte Seite, die schnell lädt. Wenn Sie die Seite ohne Optimierung laden möchten, dann klicken Sie auf diesen Text.

iCam @ dm800se v2

Moin
meine 900 had se v2 läuft damit.
schau dir mal die userbouquet.SKYICAM.tv an hinter tv muss noch .del
 
hm schwach? aber so geht !!!

Requirements
    • It is recommended to start with a fresh image on flash, preferably the latest image from opendeambox, as it will fit without problems in flash and has all the tools necessary. You can find it .
    • You also need to prepare the BIOS to be able to boot from the USB device (pendrive, card reader, USB SSD, etc).
      The process is explained here:
    [*]

Installation

  1. Transfer the rootfs image with OpenATV 7.0 to /tmp directory in the receiver, using SCP, FTP, etc.
  2. Insert USB device in the receiver
  3. SSH into the receiver[/URL]
  4. Find out device name of the USB device



  5. Code:
    sfdisk -l
    It'll be usually sda or sdb, in my case it was sdb, just replace with yours in the following commands
  6. Prepare the USB device (WARNING: this will ERASE all data)

    Code:
    dd if=/dev/zero of=/dev/sdb bs=512 count=1
  7. Create partitions (boot, swap and root)

    Code:
    sfdisk --force -uM /dev/sdb << EOF
    0,16,b,*
    ,512,82
    ,,83
    ;
    ;
    y
    EOF
  8. Format partitions

    Code:
    mkdosfs -n BOOT /dev/sdb1
    mkswap -L SWAP /dev/sdb2
    mkfs.ext4 -L ROOT /dev/sdb3
  9. Mount root and boot partitions

    Code:
    mkdir /mnt/new_boot
    mount /dev/sdb1 /mnt/new_boot
    mkdir /mnt/new_root
    mount /dev/sdb3 /mnt/new_root
  10. Extract image into root partition

    Code:
    cd /mnt/new_root
    tar xvf /tmp/openatv-7.0-dm800se-20210826.rootfs.tar.xz
  11. Move boot files into boot partition

    Code:
    mv /mnt/new_root/boot/* /mnt/new_boot/
  12. Modify autoexec_dm800se.bat

    Code:
    echo "/boot/bootlogo-dm800se.elf.gz filename=/boot/bootlogo-dm800se.jpg" > /mnt/new_boot/autoexec_dm800se.bat
    echo "/boot/vmlinux-3.2-dm800se.gz root=/dev/sdb3 rootdelay=5 rw console=ttyS0,115200" >> /mnt/new_boot/autoexec_dm800se.bat
  13. Add mountpoints for boot and swap by editing /mnt/new_root/etc/fstab and adding (at the very end)

    Code:
    /dev/sdb1 /boot vfat ro 0 0
    /dev/sdb2 none swap sw 0 0
  14. Umount and reboot

    Code:
    cd
    sync
    umount /mnt/new_boot
    umount /mnt/new_root
    reboot
The box should now boot OpenATV 7.x from the USB device!
 

Anhänge

Du musst angemeldet sein, um die Anhangsliste zu sehen.
Zuletzt bearbeitet:
Für die Nutzung dieser Website sind Cookies erforderlich. Du musst diese akzeptieren, um die Website weiter nutzen zu können. Erfahre mehr…