
Derniers tests et previews


PREVIEW Turok: Origins, nous avons testé la chasse aux dinosaures en version coop

PREVIEW Clive Barker’s Hellraiser: Revival, dans l’enfer de la démo la plus dérangeante de la gamescom 2025

PREVIEW Resident Evil Requiem : nos impressions sur la démo jouable du nouveau survival horror de Capcom

PREVIEW Onimusha: Way of the Sword, le retour d’une légende entre ombre et lumière
Dernières actualités

Marvel’s Deadpool VR : Quid de la VF ? Quid de la durée de vie ? Quid du scénario ? Le lead Designer répond !

Xbox Game Pass : les premiers ajouts de septembre 2025 dévoilés, avec Hornet en vedette

BON PLAN : Little Nightmares III en précommande à prix réduit

Cyberpunk 2077 : une grosse annonce imminente ? CD Projekt tease les fans

failed
./contrib/pspgz.py vshctrl.prx ../contrib/SystemControl.hdr vshctrl.prx VshCtrl 0x1007process_begin: CreateProcess((null), python C:cygwinprocfwcontribpspgz.py vshctrl.prx ../contrib/SystemControl.hdr vshctrl.prx VshCtrl 0x1007, ...) failed.make (e=2): Le fichier sp▒cifi▒ est introuvable.
the install failed.
use team C+D mspformat pc tool and run the installer again
je fais quoi ?????
j'ai bien respecté la procédure "débogage usb" et "applications inconnues"
quelqu'un aurait il une idée ?
En musique tranquille http://www.youtube.com/watch?v=vc3iLlT3cxg&feature=player_embedded#! Bon Jailbreak
j'ai un iphone 4 avec l'ios 5.1 j'ai redsnow pour le jailbreak.
Je suis parfaitement les instruction pour le mode DFU j'ai meme l'impression que mon iphone si met car il fait ecran noir seulement au bout du temps imparti il y a un message qui dit "No device detected. You probably misunderstood the instructions" ensuite il charge 3 fois et sa s'arrete a "exploit failed" je fait back je select le firmware 5.1 et la en bas de la page il y a marquer Connected : Iphone 4(mode Dfu) donc il l'est belle est bien seulement sa a pas marcher.
Merci de vos réponse
Bounty
tient :
http://code.google.com/searchframe#mnmO ... c&cd=3&sq=
#include <pspkernel.h>
#include <pspinit.h>
#include <pspiofilemgr.h>
#include <string.h>
#include "main.h"
#include "utils.h"
#include "printk.h"
#include "strsafe.h"
#define PLUGIN_PATH "ms0:/seplugins/"
int load_start_module(char *path)
{
int ret;
SceUID modid;
int status;
modid = sceKernelLoadModule(path, 0, NULL);
if(modid < 0 && psp_model == PSP_GO) {
strncpy(path, "ef0", 3);
modid = sceKernelLoadModule(path, 0, NULL);
}
status = 0;
ret = sceKernelStartModule(modid, strlen(path) + 1, path, &status, NULL);
printk("%s: %s, UID: %08X, Status: 0x%08X\n", __func__, path, modid, status);
return ret;
}
static char *get_line(int fd, char *linebuf, int bufsiz)
{
int i, ret;
if (linebuf == NULL || bufsiz < 2)
return NULL;
i = 0;
memset(linebuf, 0, bufsiz);
while (i < bufsiz - 1) {
char c;
ret = sceIoRead(fd, &c, 1);
if (ret < 0 || (ret == 0 && i == 0))
return NULL;
if (ret == 0 || c == '\n' || c == '\r') {
linebuf[i] = '\0';
break;
}
linebuf[i++] = c;
}
linebuf[bufsiz-1] = '\0';
return linebuf;
}
static void load_plugins(char * path)
{
char linebuf[256], *p;
int fd;
if (path == NULL)
return;
fd = sceIoOpen(path, PSP_O_RDONLY, 0777);
if (fd < 0) {
// retry on ef0
strncpy(path, "ef0", 3);
fd = sceIoOpen(path, PSP_O_RDONLY, 0777);
if(fd < 0) {
printk("%s: open %s failed 0x%08X\n", __func__, path, fd);
return;
}
}
do {
p = get_line(fd, linebuf, sizeof(linebuf));
if (p != NULL) {
int len;
printk("%s: %s\n", __func__, p);
len = strlen(p);
if (len >= 1 && p[len-1] == '1') {
char *q;
q=strrchr(p, ' ');
if (q != NULL) {
char mod_path[256];
memset(mod_path, 0, sizeof(mod_path));
strncpy_s(mod_path, sizeof(mod_path), p, q-p);
printk("%s module path: %s\n", __func__, mod_path);
load_start_module(mod_path);
}
}
}
} while (p != NULL);
sceIoClose(fd);
}
static int plugin_thread(SceSize args, void * argp)
{
unsigned int key = sceKernelInitKeyConfig();
char * bootconf = NULL;
//visual shell
if(conf.plugvsh && key == PSP_INIT_KEYCONFIG_VSH) {
bootconf = PLUGIN_PATH "vsh.txt";
} //game mode
else if(conf.pluggame && key == PSP_INIT_KEYCONFIG_GAME) {
bootconf = PLUGIN_PATH "game.txt";
} //ps1 mode
else if(conf.plugpop && key == PSP_INIT_KEYCONFIG_POPS) {
bootconf = PLUGIN_PATH "pops.txt";
}
//load mode specific plugins
load_plugins(bootconf);
//kill loader thread
sceKernelExitDeleteThread(0);
//return success
return 0;
}
void load_plugin(void)
{
SceUID thid;
thid = sceKernelCreateThread("plugin_thread", plugin_thread, 0x1A, 0x800, 0, NULL);
if(thid >= 0)
sceKernelStartThread(thid, 0, NULL);
}
http://www.xboxgen.fr/tuto-flash-lecteu ... 897-5.html
J'essaie celui là (en gardant ce que j'ai déjà)
Je suis sous dos. Et j'ai:
" MTK Vendor Intro to Master on port 0xC400 failed. If you choose to resend the command you should turn the drive off and after you pressed "Yes".
Do you want to resent the command until the drive responds ?"
Hm... J'essaie d'avancer un peu en attendant ta réponse.