ok .. then ... could you explain me how to get the serial console.
?
You need an adapter which you obviously don't have. I assume that if you would have one then you would know how to use it. It is something like this but probably on USB. Then you open Putty program and open serial port and you see lot of messages when system boots.MikeDotBe Wrote:could you explain me how to get the serial console
You probably mean revision v2.3? The answer for this is no. I got both my devices for free from a good friend named diabloss to get openelec running on it.MikeDotBe Wrote:are you planning to get a Matrix with Firmware 2.3?
On 03.2.2015 г. 12:43, administrator wrote:
> Subject: What HW revision?
> Product Model: Matrix (TBS2910)
> Support Type: Technical
> Hi,
> I just purchased a Matrix-TV Board and now I'm wondering witch HW revision this board has.
> S/N T2910S140800108. On the board I see a print TBS 2910V23. In forums, they mention HW revisions 1.2, 1.3 and 2.1. Do I have 2.3 or what?
hi,
yes, you have V2.3, but from user perspective that should be considered the same as 2.1 or 2.x
best regards,
constantine
#!/bin/sh
# SYSTEM partition size in MB
SYSTEM_ROM_SIZE=250
# set device
node=$1
# destroy the partition table
echo --------------------------------------
dd if=/dev/zero of=${node} bs=1024 count=1
# call sfdisk to create partition table
echo --------------------------------------
sfdisk --force -uM ${node} << EOF
,${SYSTEM_ROM_SIZE},0x0c
;
EOF
echo --------------------------------------
sfdisk -uM --list ${node}
echo --------------------------------------
#sfdisk -d ${node}
#echo --------------------------------------
exit 0
#############################################
# original script
# partition size in MB
BOOT_ROM_SIZE=10
# call sfdisk to create partition table
# destroy the partition table
node=$1
dd if=/dev/zero of=${node} bs=1024 count=1
sfdisk --force -uM ${node} << EOF
${BOOT_ROM_SIZE},,83
EOF
Users browsing this forum: No registered users and 7 guests