Multiboot 9xxx with Enigma 2

fikos67

Registered
Messages
125
Multiboot 9xxx with Enigma 2

I will tell you how to have 5 images Enigma 2 or normal ones to your receiver .


1. In Flash memory i have enigma2 extreme edition SifTeam
2. Use one usb stick 2 - 4 - 8 - 16Gb
3. Boot the receiver
4. Put the usb stick
5. With telnet type
umount /dev/sdb1
mkfs.ext2 /dev/sdb -L ext2
Create 4 partition at the USB stick with
fdisk /dev/sdb
m for help
n for new partition
w for saving the partition
Format each partition
mkfs.ext2 /dev/sdb1 -L ext2
mkfs.ext2 /dev/sdb2 -L ext2
mkfs.ext2 /dev/sdb3 -L ext2
mkfs.ext2 /dev/sdb4 -L ext2
and for every one partition
mount /dev/sdb1 /mnt/usb
with FTP copy the image we want myimage1.tar.gz to /mnt/usb
TELNET
cd /mnt/usb
tar -zxvf myimage1.tar.gz
sync
rm myimage1.tar.gz
umount /dev/sdb1

mount /dev/sdb2 /mnt/usb
with FTP copy the image we want myimage2.tar.gz to /mnt/usb
TELNET
cd /mnt/usb
tar -zxvf myimage2.tar.gz
sync
rm myimage2.tar.gz
umount /dev/sdb2

mount /dev/sdb3 /mnt/usb
with FTP copy the image we want myimage3.tar.gz to /mnt/usb
TELNET
cd /mnt/usb
tar -zxvf myimage3.tar.gz
sync
rm myimage3.tar.gz
umount /dev/sdb3

mount /dev/sdb4 /mnt/usb
with FTP copy the image we want myimage4.tar.gz to /mnt/usb
TELNET
cd /mnt/usb
tar -zxvf myimage4.tar.gz
sync
rm myimage4.tar.gz
umount /dev/sdb4

Now we have to fix the uboot for choosing wich image we will use for booting

TELNET
uboot set 2 "Enigma USB1" enigma2 usb sdb1
uboot set 3 "Enigma USB2" enigma2 usb sdb2
uboot set 4 "Enigma USB3" enigma2 usb sdb3
uboot set 5 "Enigma USB4" enigma2 usb sdb4
Fixing receiver IP for uboot
TELNET
uboot net 192.168.1.xxx 255.255.255.0 192.168.1.1 192.168.1.1

Reboot the receiver and press for 5 seconds the
1 flash memory boot
2 usb1 memory boot
3 usb2 memory boot
4 usb3 memory boot
5 usb4 memory boot
 
Top