PSPx форум

PSPx форум (https://www.pspx.ru/forum/index.php)
-   Архив устаревших тем PS3 (https://www.pspx.ru/forum/forumdisplay.php?f=428)
-   -   [CFW] COBRA CEX-4.46 v7.00 - кастомная прошивка для PS3 (https://www.pspx.ru/forum/showthread.php?t=104170)

Kolyk 25.11.2013 23:59

Хочу просить помощи, что то не получается примонтировать игру с сети, если можно выложите инструкцию поподробней

akela1979 26.11.2013 14:32

UPDATE: webMAN 1.17 & droidMAN 0.30
 
Цитата:

webMAN 1.17.zip

Added "Enable dynamic fan control" option in [SETUP] - only for COBRA7-4.46 firmwares (thanks to Estwald for the fancontrol payload)
Added two modes: Auto (with 62'C/68/70/73/77'C thresholds) and 6 preset manual fan speeds:
Auto
25% fan speed (0x40)
38% (0x60)
44% (0x70)
56% (0x90)
75% (0xC0)
100% (0xF0)
Нажмите для увеличения




Changing the fan options in [SETUP] are applied immediately and don't require restart (unless you want to disable the fan control).

I've never used the fan control thing, but I think it works just ok. Give it a try and let me know.

Code:
Код:

void fan_control(u8 temp0, u8 temp1, u8 temp2, u8 temp3, u8 temp4, u8 temp5)
{
        if(peekq(0x80000000002EA9B8ULL)==0x4345580000000000ULL)// {dex_mode=0; c_firmware=4.46f;}
        {
                u64 PAYLOAD_BASE = 0x8000000000000f70ULL;
                u64 syscall_base = 0x800000000035E860ULL;
                u8 payload[1832]={...};

                u64 *addr= (u64 *)payload;
                addr[1] = syscall_base;
                addr[2] += PAYLOAD_BASE;
                addr[3] = peekq(syscall_base + (u64) (130 * 8));
                addr[4] += PAYLOAD_BASE;
                addr[5] = peekq(syscall_base + (u64) (138 * 8));
                addr[6] += PAYLOAD_BASE;
                addr[7] = peekq(syscall_base + (u64) (379 * 8));

                if(peekq(PAYLOAD_BASE)==0)
                {
                        for(u16 m = 0; m < ((1832 + 7) & ~7); m+=8)
                                pokeq(PAYLOAD_BASE + (u64) m, addr[m>>3]);
                }

                u64 payload_ctrl = (PAYLOAD_BASE + (lv2peek32(PAYLOAD_BASE + 4ULL ))) - 8ULL;

                lv2poke32(payload_ctrl +  0ULL, 0x33); // current fan speed
                lv2poke32(payload_ctrl +  4ULL, 0x00); // 0 - disabled, 1 - enabled without leds, 2 - enabled with leds
                sys_timer_usleep(300000);
                lv2poke32(payload_ctrl +  8ULL, 0x5F); // fan speed in shutdown syscall (when it calls PS2 Emulator)
                lv2poke32(payload_ctrl + 12ULL, 0x40); // fan speed < temp_control0
                lv2poke32(payload_ctrl + 16ULL, 0x58); // fan speed temp_control0 => temp_control1
                lv2poke32(payload_ctrl + 20ULL, 0x60); // fan speed temp_control0 <= temp_control1
                lv2poke32(payload_ctrl + 24ULL, 0x68); // fan speed >= temp_control1
                lv2poke32(payload_ctrl + 28ULL, 0x70); // fan speed >= temp_control2
                lv2poke32(payload_ctrl + 32ULL, 0x78); // fan speed >= temp_control3
                lv2poke32(payload_ctrl + 36ULL, 0x98); // fan speed >= temp_control4

                lv2poke32(payload_ctrl + 40ULL, temp1); // temp_control0 (єC)
                lv2poke32(payload_ctrl + 44ULL, temp2); // temp_control1 (єC)
                lv2poke32(payload_ctrl + 48ULL, temp3); // temp_control2 (єC)
                lv2poke32(payload_ctrl + 52ULL, temp4); // temp_control3 (єC)
                lv2poke32(payload_ctrl + 56ULL, temp5); // temp_control4 (єC)

                if(temp0)
                {
                        lv2poke32(payload_ctrl + 12ULL, temp0);        // fan speed < temp_control0
                        lv2poke32(payload_ctrl + 16ULL, temp0); // fan speed temp_control0 => temp_control1
                        lv2poke32(payload_ctrl + 20ULL, temp0); // fan speed temp_control0 <= temp_control1
                        lv2poke32(payload_ctrl + 24ULL, temp0); // fan speed >= temp_control1
                        lv2poke32(payload_ctrl + 28ULL, temp0); // fan speed >= temp_control2
                        lv2poke32(payload_ctrl + 32ULL, temp0); // fan speed >= temp_control3
                        lv2poke32(payload_ctrl + 36ULL, temp0); // fan speed >= temp_control4
                }

                lv2poke32(payload_ctrl + 4ULL, 0x01);

                pokeq(syscall_base + (u64) (130 * 8), PAYLOAD_BASE + 0x10ULL);
                pokeq(syscall_base + (u64) (138 * 8), PAYLOAD_BASE + 0x20ULL);
                pokeq(syscall_base + (u64) (379 * 8), PAYLOAD_BASE + 0x30ULL);

                lv2poke32(0x800000000000C698ULL, 0x38600000); // sys 383
                lv2poke32(0x8000000000009E28ULL, 0x38600001); // sys 409
                lv2poke32(0x800000000000A324ULL, 0x38600001); // sys 389
                lv2poke32(0x800000000000A3ECULL, 0x38600001); // sys 386
        }
}




Цитата:

droidMAN 0.30.zip

Added Category Selection (PS3, PS2, PS1)
Direct Access to webMAN
Backup of SAVEDATA (only first user '000001' atm, i'm working on adding user selection)
Quick links to IGN, gamefaqs, gametrailers and youtube for each game
Cosmetic fixes


To Do:

Game saves management (copying from a user to another, possibility to select the saves to copy instead of the whole directory)
Check games updates, and direct download to the phone in order to install it easily when connecting the device to the ps3
Option to restart the PS3 / ******* My Games
Monitoring the temperature
Adding network games listing

akela1979 26.11.2013 14:45

Цитата:

Сообщение от MasterTwix (Сообщение 1080341)
ну теперь мне тчно ваша помощ понадобицо, в линуксе я рак, полный, на винч из линуксовых прог ставил тока трансмиссию и ту по инструкции, к диску через ssh могу подключицо через прогу Putty или както так, что в ней нужно прописать чтобы поставить туда этот сервер и как настроить этот самый сервер чтобы он был постоянно включён вместе с нас хранилещем и был настроенн в папку Y\Torrent

Попробуйте так > help for compiling deank/cobras new ps3netsrv for ARM device! или так > EXPERIMENTELL, сам по этому поводу сказать нечего не смогу, так как LINUX не использую.


Цитата:

Сообщение от Kolyk (Сообщение 1080808)
Хочу просить помощи, что то не получается примонтировать игру с сети, если можно выложите инструкцию поподробней

Вот как это делаю я:
  1. устанавливаем последнюю версию webMAN 1.17.zip

  2. запустите "mmCM/multiMAN", и в самом низу он высветит "PS3 IP" (запишите этот PS3 IP, он Вам еще пригодится!)

  3. в "mmCM" включите "net_host" сетевые настройки, и укажите IP раздающего устройства > например PC

  4. скачиваем последнюю версию ps3netsvr.zip и запускаем, при необходимости настраиваем.

  5. запустите Ваш любимый интернет браузер, и с помощью "PS3 IP" которой вы ранее записали подключитесь к приставке.

  6. в том же браузере переключитесь в подраздел настройки, и установите галочку на "Scan for LAN games/videos PS3NETSRV IP: здесь.укажите.IP.вашего.PC"

  7. сохраните настройки внутри браузера, и оттуда же перезапустите приставку.

  8. все, теперь игры из локальной сети отображаются и в браузере, откуда их можно монтировать, и "XMB > My Games" откуда их также можно монтировать.

akela1979 29.11.2013 20:24

UPDATE: webMAN v1.17c
 

Цитата:

webMAN Version 1.17c.zip
Added CPU, RSX or CPU+RSX

Auto option for fan-control is now really dynamic using fan-speed-step management
A free temperature value is added (CELSIUS ONLY!) to set the desired HIGHEST temperature you're comfortable for your PS3 to reach. webMAN will make sure that the PS3 won't get hotter than the value you set (CELSIUS). The accuracy is +/- 1'C.

pursx.ps3 (temperatures) page you'll see additional info about the desired speed and current fan speed:
CPU: 69°C (MAX: 72°C / FAN: 0x40)
RSX: 54°C
---
CPU: 156°F
RSX: 129°F
---
MEM: 1940KB

petrovich91 01.12.2013 01:11

помогите все сделал по инструкции пытался обновить 4,50 и 4,46 через xbm тоже самое и через реков меню установлена 4,30

akela1979 01.12.2013 01:35

petrovich91, уточните, какая именно CFW4.30? Если речь о OFW то вот > Все о даунгрейде PS3 с прошивок 3.56 и выше

petrovich91 01.12.2013 03:16

нет кустомная

dws 02.12.2013 12:18

akela1979 а Webman 1.16 у тебя не остался ?
не охота эти замуты с кулерами в новых версиях использовать.

akela1979 02.12.2013 17:53

Вложений: 1
Цитата:

Сообщение от dws (Сообщение 1081017)
akela1979 а Webman 1.16 у тебя не остался ?
не охота эти замуты с кулерами в новых версиях использовать.


Ezz 06.12.2013 16:47

WEbman просто нереально сложная программа,уже пол месяца не могу понять как смонтировать игру
я установил её на пс3 в XMB появилась mygames
на пк открываю браузер ввожу IP ps3 и открывается меню webman и моя ps3 её корневые файлы типо всё ок работает и что теперь?
Host root нажимаю и тут error пишет ps3netserver указал на игру,в браузере webman нажимаю на games и пусто..ваще не понятно...
единственное что сделано для людей это кобра где без проблем через сеть монтирую образы и всё ок и понятно,а webman это китайский ребус,я быстрее анучился реболл делать на работе,чем понять как работает этот вебман..ну просто нереально не понятно.

akela1979 07.12.2013 21:40

http://psx-scene.com/forums/content/...42-webman.png/

Update webMAN v1.21:
Цитата:

Fixed a bug which caused system lock (or no action) when user uses SELECT+L1/R1
4.53 spoofer built-in
Once you update the plugin and restart the system - the spoof will be applied and on next system boot it will be active.


I tested with my 80GB FAT PS3 and although everything was ok on the 160GB SLIM PS3 I could not get the SELECT+L1/R1 working. It turned out that the memory mapping for both consoles is different (may be a lot of other things are different, although it is just a PS3)... So my FAT PS3 would not react to SELECT+L1/R1 (causing memory faults).

Everything should be ok now and probably few other things got fixed in the way.

To use "SELECT+L1/R1" for scrolling last three games you must load at least three different games (via browser or from "My Games"). Otherwise nothing will happen when you hit the combo.

webMAN Version 1.21.zip




http://psx-scene.com/forums/content/...-droidman.png/

Update droidMAN v0.60:
Цитата:

For this version, I started implementing the suggestions of @aldostools (Thank you!!):


1- As the Insert & Unmount buttons are not frequently used, they could be moved to the left side menu. Done
2- Rename 'Load' to '*******'. IMO it a more logical name. (I added the icon next the setting icon) Done
3- Could you auto-******* at least once if there is nothing displayed and the connection is "Online"? The first time I used the application it was online, but not showing the games until I discovered that "Load" was to ******* the list. Done
4- The temperature display is replaced by the "Online" text too soon. My suggestion is that the temperature be displayed for 10 seconds, then show online status for 2 seconds and show again the temperature. Done
5-If you remove Insert & Unmount from the main screen, you would have enough space for a "Status" button. That could show the /cpursx.ps3 or use a wrapped display with fancy display. Done (I'll customize the display in a coming version)
6- The webMAN option on on the left side menu should call /setup.ps3 instead of index.ps3 (/index.ps3 is redundant) Done
7-Restart, Shutdown and Files options would be very useful on the left side menu too. Not Yet
8-When you mount a game you can have 3 buttons (instead of 2): [Unmount] [Backup Saves] [Update]. The "Backup Saves" would be helpful to allow backup of individual games. Done
9- In the same screen 2 additional links would be useful: metacritics and wikipedia. Not Yet
10-There is a bug in the Edit IP and Save Data Folder fields accept "Enter" as a character. It cause issues. Do you mean that I should check the input?
11- If group is turned ON, the application crashes. Corrected


In addition to this, I tried to correct other bugs. Does net games listing work for anybody? What about ISO games

droidMAN_0.30.zip

Нажмите для увеличения
Нажмите для увеличения
Нажмите для увеличения
Нажмите для увеличения


MasterTwix 09.12.2013 15:42

народ у меня написанно что есть 4.53.01 но не обновляецо сама, что можно сделать?

akela1979 10.12.2013 15:13

webMAN 1.23
 
Цитата:

webMAN Version 1.23.zip

It is now possible to browse network locations (/net0 and /net1) from [Files] mode. You can browse the folders, download files and mount folders.
It is possible to mount remote (and local) folders (as /dev_bdvd) by clicking the "<dir">" entry
PSP Launcher is now present inside the "PLAYSTATION(R)PORTABLE" group for easy access (10x to @aldostools )
Added option in [Setup]: [-] Disable PAD shortcuts (restart/shutdown/prev/next)


Mounting remote folders allows you to install package files directly from your PC, to mount any folder to be accessible in other applications (like Showtime), etc...
After you click the <dir> entry you will be able to access your pkg files from the [* Install Package Files] entry in XMB. Also /dev_hdd0/packages is mounted as /app_home for easy access to local pkg files.
Нажмите для увеличения
Нажмите для увеличения


EvGeNIK 15.12.2013 08:59

Здравствуйте, подскажите пожалуйста, возможно сделать так, что-бы webMAN видел bdiso, которые лежат в главной папке которую указываю в netservere в папке. т.е. папа в папке. Мультимэн при этом показывает папки в папках. Спасибо.

Hans77 15.12.2013 11:31

Здравствуйте! У меня такая проблема: при однократном быстром нажатии кнопки PS во время игры не отображаются иконки раздела игры, т.е. из игры я выйти не могу, иконки остальных разделов отображаются (видео, аудио, настройки и т.д.)! Приходится зажимать кнопку PS, и только тогда могу выйти! У всех так?! Если нет, то в чем проблема?!

riku.kh3 15.12.2013 13:51

Цитата:

Сообщение от Hans77 (Сообщение 1081520)
Здравствуйте! У меня такая проблема: при однократном быстром нажатии кнопки PS во время игры не отображаются иконки раздела игры, т.е. из игры я выйти не могу, иконки остальных разделов отображаются (видео, аудио, настройки и т.д.)! Приходится зажимать кнопку PS, и только тогда могу выйти! У всех так?! Если нет, то в чем проблема?!

У всех так, и это на любой Cobra-прошивке (Rogero, HABIB, MiralaTijera). Баг Кобры.

Hans77 15.12.2013 15:39

Ясно!)

Grikha 16.12.2013 16:08

Доброго времени! (После установки сей прошивки) При включении с кнопки PS, консоль включается, а джой ТУПО моргает и всё. Приходится его отключать и по новой подключать (либо кабель втыкать чтоб обнаружился). В чём может быть проблема? Выручайте.

nse82 17.12.2013 12:52

Гуру подскажите, как поставить эту прошивку на - [CFW] HABIB CEX-4.53 v1.01, возможно-ли накатить сверху без "танцев с бубном", или нужно сначала откатится до 3.55 через - Универсальный Даунгрейдер. Заранее спасибо.

Grikha 17.12.2013 21:05

Просто ставь поверх.


Текущее время: 02:02. Часовой пояс GMT +3.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc. Перевод: zCarot
PSPx Forum - Сообщество фанатов игровых консолей.