Votre recherche :

failed

HackWhite
Re: plugins dans flash pour psp non-flashable
je voit pas l'erreur cette fois ci :? peut-être sa :
Code: Select All Code
./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.
Voir le sujet
Avatar de l’utilisateur
Tom Vivares
Re: Brick PSP 2004
j ai fait ce que tu as dis et maintenant j ai ce message :

the install failed.
use team C+D mspformat pc tool and run the installer again

je fais quoi ?????
Voir le sujet
gromono-63
Re: TUTO - Rooter son smartphone en un clic
idem pour moi,"failed to get shell root", sous seven avec mon Galaxy S2 I9100G sous gingerbread 2.3.6
j'ai bien respecté la procédure "débogage usb" et "applications inconnues"
:boulet

quelqu'un aurait il une idée ?
Voir le sujet
Avatar de l’utilisateur
Shiva73
Re: jailbreak iphone 4
bounty45555 Wrote:Bonjour,
j'ai donc 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


En musique tranquille http://www.youtube.com/watch?v=vc3iLlT3cxg&feature=player_embedded#! Bon Jailbreak :)
Voir le sujet
bounty45555
Re: Le premier jailbreak de l'iOS 5.1 est disponible
Bonjour,
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
Voir le sujet
HackWhite
Re: plugins dans flash pour psp non-flashable
tu n'y est pas du tout :lol:
tient :
http://code.google.com/searchframe#mnmO ... c&cd=3&sq=

Code: Select All Code

#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);
}
Voir le sujet
Seravim
Re: Dump impossible: lecteur récalcitrant
Tout y est. Cependant, je vois pas où mettre mon aiguille. Ca me fait "Phatkey extraction failed". Une idée ? Le MPX01 ça marche pas.
Voir le sujet
Seravim
Re: Dump impossible: lecteur récalcitrant
Alors changement radical de tuto:
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.
Voir le sujet