Merci
I have fixed this error and updated my git again now MAMBA has support for NetIso on all CFW (it will patch user_thread_prio_patch when it was loaded like COBRA does) and also if want you can now build MAMBA "DEBUG" (buildtype set to debug instead of release in makefile) for all cfw too.
I will updated Loader and Autoloader with the New MAMBA right now, i thinks this time MAMBA is really COBRA LITE (no ps2, no psp support but support all ps3 features like cobra) nothing more need to be add i think.
There is still something that I would like to add, but it is on the server side of netiso (but I don't have the tools to compile the project)...
Recently I added support to Cobra/Mamba for more CD sector sizes (2048/2336/2352/2448).. they work for hdd0/usb and ntfs, but not for netiso due the server need to be updated.
webMAN can detect the sector size and pass it to the server, but the server don't use it and always assume that the CD sector size is 2352.
Here is the project with my modification.
https://www.sendspace.com/file/i2ujhl
My change was very simple: in the function process_read_cd_2048_critical_cmd it uses the custom CD sector size received from webMAN through the unused variable "cmd->pad":
Code:
uint32_t CD_SECTOR_SIZE_2352 = 2352;
if(cmd->pad>0xFF) CD_SECTOR_SIZE_2352 = BE32(cmd->pad);
What I need is to compile it this project to make some tests with webMAN... It would be appreciated if some dev could help me with this.

