| (Продолжение темы здесь) Версия для печати (дайджест по поиску " ratti") | |
| Конференция: | Конференция iXBT.com (http://forum.ixbt.com/) |
| Форум: | Домашний кинотеатр: ТV и проекторы (http://forum.ixbt.com/?id=62) |
| URL: | http://forum.ixbt.com/topic.cgi?id=62:16777 |
| 3324. ratti, 22.04.2010 11:01 |
цитата: Попробуйте добавить в конце .../1.mpg(.ts/.avi/.wmv ...) в зависимости от свойств потока. Напрямую по UDP наверное совсем не пойдет( только через UDP-прокси) или попробуйте проключить телек как STB на роутере (нужен 2-й IP для провайдера??? ) если ПО в самсунге 7020 поддерживает multicast (Вопрос к тем кто копался в сборке?) |
| 3327. ratti, 22.04.2010 13:44 |
цитата: при просмотре через VLC нажмите медиа/кодек информация Насчет телнета; если попробуете, то и Да VLC бы хорошо - эх, мечты-мечты |
| 3329. ratti, 22.04.2010 14:09 |
цитата: 1-й - это чтобы компилить ARM exe-шники на Линуксе, я так думау... |
| 5060. ratti, 01.07.2010 11:43 |
цитата:============================================================================== 1) get yourself an Ex-Link serial cable to your TV 2) Go into the Service Menu ( quickly push [INFO] [MENU] [MUTE] [POWER] on your remote control ) 3) Change setting for your RS232C interface to "debug" ( Control -> Sub Option -> RS-232 Jack -> [ Debug | UART | Logic ] ) 4) use following connection parameters with your client ( e.g. Hyper Therminal or ZOC Terminal ) 115200,8,n,1,off 5) Enter "debug" at the invsible prompt ... you should see something like below with each keystroke [SERIAL INPUT MANAGE] 1-th ENABLE Magic serial input match! ... [SERIAL INPUT MANAGE] 5-th ENABLE Magic serial input match! [SERIAL INPUT MANAGE] serial input ENABLE!!!!! 6) Now you need to be fast ... a) hit CTRL-C, which stops the exeDSP binary b) immediately after that enter ( you have ca. 3 seconds ... I suggest you cut&paste this command ) /mtd_boot/MicomCtrl 23 This now prevents your LED/LCD to stop 7) enjoy your serial console This will now also allow to enable telnet access on those devices, where we were not able to hack the FW due to it being OpenSSL encrypted. |
| 5078. ratti, 01.07.2010 14:02 |
цитата:============================ наверное, основное добиться этого: 5) Enter "debug" at the invsible prompt ... you should see something like below with each keystroke [SERIAL INPUT MANAGE] 1-th ENABLE Magic serial input match! <===== это ответ на каждую нажатую букву слова "debug" 5-символов - 5 откликов ... [SERIAL INPUT MANAGE] 5-th ENABLE Magic serial input match! [SERIAL INPUT MANAGE] serial input ENABLE!!!!! |
| 5080. ratti, 01.07.2010 14:06 |
цитата: Вы опознали пины под JTAG на плате? |
| 5104. ratti, 02.07.2010 11:21 |
цитата: ==================== В u-boot определна константа BOOTMODE_MAGIC 0xDEAD0000 и проверка на нее if (post_hotkeys_pressed() && !(bootmode & POST_POWERTEST)) { newword = BOOTMODE_MAGIC | POST_SLOWTEST; } else if (bootmode == 0) { newword = BOOTMODE_MAGIC | POST_POWERON; } else if (bootmode == POST_POWERON || bootmode == POST_SLOWTEST) { newword = BOOTMODE_MAGIC | POST_NORMAL; } else { /* Use old value */ newword = post_word_load () & ~POST_COLDBOOT; } if (bootmode == 0) { /* We are booting after power-on */ newword |= POST_COLDBOOT; } post_word_store (newword); может ее как-то можно воспроизвести с клавы Добавление от 02.07.2010 11:25: post_hotkeys_pressed(gd_t *gd) |
| 5110. ratti, 02.07.2010 13:31 |
цитата:===================================== На SamyGo пишут что надо держать '~' без шифта Prior to boot-process * Enter Service Menu ( quickly push [INFO] [MENU] [MUTE] [POWER] on your remote control ) * Change setting for your RS232C interface to "debug" ( Control -> Sub Option -> RS-232 Jack -> [ Debug | UART | Logic ] ) * Change setting for Watchdog to "off", so that the device doesn't reboot while you are in uBoot menu ( Control -> Sub Option -> Watchdog -> [ on | off ] ) <<<<<<<<<<<<<======= During the boot-process * Press and hold "~" <<<<<<<<<<<<<======= * once you see "Hit any key to stop autoboot: ..." hit ENTER ( by default there is a booting delay of 2 seconds ) Now you should have a boot prompt as show below. |
| 5113. ratti, 02.07.2010 13:51 |
OVDEN Нашел в последней версии u-boot , подозрения оправдались : величина хот-кея зависит от типа борда (т.е. может быть для разных самсунговских теликов разная) /* * Supply a default implementation for post_hotkeys_pressed() for boards * without hotkey support. We always return 0 here, so that the * long-running tests won't be started. * * Boards with hotkey support can override this weak default function * by defining one in their board specific code. */ int __post_hotkeys_pressed(void) { return 0; /* No hotkeys supported */ } int post_hotkeys_pressed(void) __attribute__((weak, alias("__post_hotkeys_pressed"))); void post_bootmode_init (void) { int bootmode = post_bootmode_get (0); int newword; if (post_hotkeys_pressed() && !(bootmode & POST_POWERTEST)) { newword = BOOTMODE_MAGIC | POST_SLOWTEST; } else if (bootmode == 0) { newword = BOOTMODE_MAGIC | POST_POWERON; } else if (bootmode == POST_POWERON || bootmode == POST_SLOWTEST) { newword = BOOTMODE_MAGIC | POST_NORMAL; } else { /* Use old value */ newword = post_word_load () & ~POST_COLDBOOT; } |
| URL: | http://forum.ixbt.com/topic.cgi?id=62:16777 |