|
|
#11 | |
|
Member
![]() |
dev_usb000 is Right USB ?! |
|
|
|
|
|
|
#12 |
|
Member
![]() Join Date: Nov 2011
Posts: 106
Likes: 3
Liked 19 Times in 15 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
|
c2d without linux would be really great
|
|
|
|
|
|
#13 |
|
Homebrew Developer
![]() Join Date: Sep 2010
Location: Puerto Rico, U.S.
Posts: 906
Likes: 1,066
Liked 2,021 Times in 512 Posts
Mentioned: 347 Post(s)
Tagged: 0 Thread(s)
|
I will switch back to CEX and try this up, then I will compare the results with my previous conversion files.
If we can skip Linux, I could edit my guide and make is a LOT simpler. SeeYa!
__________________
gamePKG / FB Alpha RL - [ https://github.com/CaptainCPS ]
FB ALPHA DEV TEAM - [ http://neosource.1emu.net ] [ http://www.barryharris.me.uk/ ] PS3 - [CECH-2501A][NOR][160GB HDD][REBUG CFW 4.41.2 LITE] |
|
|
|
|
Likes: (6) |
|
|
#14 |
|
Member
![]() Join Date: Jul 2011
Location: Scotland
Posts: 169
Likes: 324
Liked 41 Times in 26 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
|
could you do the guide for a nor / slim
thanks |
|
|
|
|
|
#15 | ||
|
Apprentice
![]() Join Date: Jul 2012
Posts: 12
Likes: 3
Liked 9 Times in 4 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
|
The First eEID0 Section is needed using the step by step tutorial to convert to DEX without a complete NOR | NAND dump. DEX Tutorial or the leak tutorial info, both are using OPENSSL to the Encryption Stuff. Right now the problem is that dump Metldr and get the eeid root keys is a little hard process and only with linux but we are working on that... ************* [ - Post Merged - ] ************* I hope that we release this soon (days, etc)... |
||
|
|
|
|
|
#16 | |
|
Member
![]() Join Date: Feb 2011
Posts: 427
Likes: 97
Liked 47 Times in 38 Posts
Mentioned: 6 Post(s)
Tagged: 0 Thread(s)
|
|
|
|
|
|
|
|
#17 |
|
Member
![]() Join Date: Jul 2011
Location: Scotland
Posts: 169
Likes: 324
Liked 41 Times in 26 Posts
Mentioned: 4 Post(s)
Tagged: 0 Thread(s)
|
i think i will wait this out so i don't have to format my drive
|
|
|
|
|
|
#18 | |||
|
Apprentice
![]() Join Date: Aug 2011
Posts: 17
Likes: 31
Liked 7 Times in 6 Posts
Mentioned: 3 Post(s)
Tagged: 0 Thread(s)
|
Code:
ldr.ld
ENTRY(_start)
SECTIONS
{
. = 0x25800;
.text :
{
*(.text)
}
.data :
{
*(.data)
*(.rodata)
}
.bss :
{
bss = .;
*(.bss)
}
}
Code:
types.h #ifndef _TYPES_H_ #define _TYPES_H_ typedef char s8; typedef unsigned char u8; typedef short s16; typedef unsigned short u16; typedef int s32; typedef unsigned int u32; typedef long long int s64; typedef unsigned long long int u64; #endif Code:
start.S .text /* Loader entry. */ .global _start _start: /* Setup stack pointer. */ ila sp, 0x3DFA0 /* Well... */ brsl lr, main _hang: br _hang Code:
main.c
#include "types.h"
void *_memcpy(void *dst, void *src, u32 len);
void main()
{
//Copy eid root key/iv to shared LS.
_memcpy((u8 *)0x3E000, (u8 *)0x00000, 0x30);
//Hang (the PPU should copy the key/iv from shared LS now).
while(1);
}
void *_memcpy(void *dst, void *src, u32 len)
{
u8 *d = (u8 *)dst;
u8 *s = (u8 *)src;
u32 i;
for(i = 0; i < len; i++)
d[i] = s[i];
return dst;
}
https://twitter.com/naehrwert/status/226686257005203456 |
|||
|
|
|
|
|
#19 | |
|
Apprentice
![]() Join Date: Jul 2012
Posts: 12
Likes: 3
Liked 9 Times in 4 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
|
Last edited by checko; 07-21-2012 at 06:49 PM. |
|
|
|
|
|
|
#20 |
|
Senior Member
![]() |
another demonhades production huh? well seeing as to all the past stuff that has gone on i will belive it when i see it. not trying to down anyone but this is just the way it is.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|