Hacking Luma3DS - Noob-proof 3DS Custom Firmware

Status
Not open for further replies.

Just Passing By

Well-Known Member
Member
Joined
Jan 3, 2016
Messages
1,563
Trophies
0
XP
663
Country
United States
no, the system boot to aureinand insttantly
is there a boot manager setup to use on A9HL to give me a choice when i turn on my N3DS?
There are boot managers that you can use with a9lh, but for right now, you should just try and get aureinand working properly first. PM me your sd card files please. I want to take a look at what you have in it because it should work. Are you using the latest version of aureinand?
 

EdSe

Member
Newcomer
Joined
Sep 19, 2015
Messages
15
Trophies
0
Age
43
Location
Zagreb, Croatia
XP
96
Country
Croatia
I have an question for following:

- I'm just on sysNand A9LH AuReiNand 10.7 and it works great (N3DSXL)!
- I deleted my emuNand from SD card, so my system is only running sysNand A9HL 10.7!

Now ... Homebrew apps EmuNAND9 and Decrypt9 don't work, They need ver9.2 to work I suppose.

My Question (s) is this:
- how can I backup my new A9HL sysNand 10.7...
- and how can I install or put emuNand back from backup file if I wanted to do that?

Thanks!
 

Just Passing By

Well-Known Member
Member
Joined
Jan 3, 2016
Messages
1,563
Trophies
0
XP
663
Country
United States
I have an question for following:

- I'm just on sysNand A9LH AuReiNand 10.7 and it works great (N3DSXL)!
- I deleted my emuNand from SD card, so my system is only running sysNand A9HL 10.7!

Now ... Homebrew apps EmuNAND9 and Decrypt9 don't work, They need ver9.2 to work I suppose.

My Question (s) is this:
- how can I backup my new A9HL sysNand 10.7...
- and how can I install or put emuNand back from backup file if I wanted to do that?

Thanks!
1. Get D9 on boot for aureinand
2. Remake the partition for emunand and then restore your backup.
 

astronautlevel

Well-Known Member
Member
Joined
Jan 26, 2016
Messages
4,128
Trophies
2
Location
Maryland
Website
ataber.pw
XP
5,008
Country
United States
I have an question for following:

- I'm just on sysNand A9LH AuReiNand 10.7 and it works great (N3DSXL)!
- I deleted my emuNand from SD card, so my system is only running sysNand A9HL 10.7!

Now ... Homebrew apps EmuNAND9 and Decrypt9 don't work, They need ver9.2 to work I suppose.

My Question (s) is this:
- how can I backup my new A9HL sysNand 10.7...
- and how can I install or put emuNand back from backup file if I wanted to do that?

Thanks!
EmuNAND9 and Decrypt9 both have arm9loaderhax versions.

You would need to format your SD for EmuNAND then inject the EmuNAND backup using either Decrypt9 or EmuNAND9.

--------------------- MERGED ---------------------------

Same problem with me as well I can't get dsiware to work
Did you install TWL_FIRM patches?
 

EdSe

Member
Newcomer
Joined
Sep 19, 2015
Messages
15
Trophies
0
Age
43
Location
Zagreb, Croatia
XP
96
Country
Croatia
EmuNAND9 and Decrypt9 both have arm9loaderhax versions.

You would need to format your SD for EmuNAND then inject the EmuNAND backup using either Decrypt9 or EmuNAND9.

Where can I get them? I know about formatting SD card, thats fine for me. I'm just trying to run D9 or E9 for now to know I'm safe ;)
 

Just Passing By

Well-Known Member
Member
Joined
Jan 3, 2016
Messages
1,563
Trophies
0
XP
663
Country
United States
so I put and rename "Decrypt9WIP.3dsx" to "arm9loaderhax.3dsx" in 3DS folder and restart console to load D9?
No if you have the latest version of Aureinand, just download the newest version of D9 and then find the file with the extension .bin. after that rename it to arm9payload.bin and place it within your rei folder. Then turn on your 3ds and hold l+r.
 
  • Like
Reactions: EdSe

DjoeN

Captain Haddock!
Member
Joined
Oct 21, 2005
Messages
5,489
Trophies
0
Age
54
Location
Somewhere in this potatoland!
Website
djoen.dommel.be
XP
2,857
Country
Belgium
No, I was playing Hyrule Warriors Legends :P

anyway, let's see if @Aurora Wright can help

I made some changes to the CFW source to try and apply this Home Menu region patch, it compiles fine, but it just sits on the splash screen when I try booting it.
If I comment out my changes and compile again it loads fine.

The changes I made are as follows:

patches.c
Code:
const u8 regionPattern[16] = {0x00, 0x00, 0x55, 0xE3, 0x01, 0x10, 0xA0, 0xE3, 0x11, 0x00, 0xA0, 0xE1, 0x03, 0x00, 0x00, 0x0A};
const u8 regionFree[16] = {0x01, 0x00, 0xA0, 0xE3, 0x70, 0x80, 0xBD, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};

void getRegionLoc(void *pos, u32 size, u32 *off){
    *off = (u32)memsearch(pos, regionPattern, size, 16);
}
patches.h
Code:
const u8 regionPattern[16];
const u8 regionFree[16];

void getRegionLoc(void *pos, u32 size, u32 *off);
firm.c (patchFirm)
Code:
u32 regionOffset = 0;
getRegionLoc(firmLocation, firmSize, &regionOffset);
memcpy((void *)regionOffset, regionFree, sizeof(regionFree));
Isn't the HomeMenu also regionlocked (i tought so) and the patches you apply or for a US system (USA) and i bet you are trying it on a UK system (EUR)

[EDIT]
I haven't read myself into this homemenu regionfree patching thing yet, but that was my first tought.
 
Last edited by DjoeN,

Shuttleu

Well-Known Member
Member
Joined
Sep 11, 2010
Messages
106
Trophies
0
XP
319
Country
Isn't the HomeMenu also regionlocked (i tought so) and the patches you apply or for a US system (USA) and i bet you are trying it on a UK system (EUR)

[EDIT]
I haven't read myself into this homemenu regionfree patching thing yet, but that was my first tought.
I don't believe the HomeMenu is region specific, so region shouldn't make any difference
Actually, it probably is
 
Last edited by Shuttleu,
  • Like
Reactions: DjoeN
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    I just want a Pokemon Hell Raiser fan game 😭
  • K3Nv2 @ K3Nv2:
    Anyone wanna play with my joydock
  • BigOnYa @ BigOnYa:
    Biomutant looks cool tho, may have to try that
  • Quincy @ Quincy:
    Usually when such a big title leaks the Temp will be the first to report about it (going off of historical reports here, Pokemon SV being the latest one I can recall seeing pop up here)
  • K3Nv2 @ K3Nv2:
    I still like how a freaking mp3 file hacks webos all that security defeated by text yet again
  • BigOnYa @ BigOnYa:
    They have simulators for everything nowdays, cray cray. How about a sim that shows you playing the Switch.
  • K3Nv2 @ K3Nv2:
    That's called yuzu
    +1
  • BigOnYa @ BigOnYa:
    I want a 120hz 4k tv but crazy how more expensive the 120hz over the 60hz are. Or even more crazy is the price of 8k's.
  • K3Nv2 @ K3Nv2:
    No real point since movies are 30fps
  • BigOnYa @ BigOnYa:
    Not a big movie buff, more of a gamer tbh. And Series X is 120hz 8k ready, but yea only 120hz 4k games out right now, but thinking of in the future.
  • K3Nv2 @ K3Nv2:
    Mostly why you never see TV manufacturers going post 60hz
  • BigOnYa @ BigOnYa:
    I only watch tv when i goto bed, it puts me to sleep, and I have a nas drive filled w my fav shows so i can watch them in order, commercial free. I usually watch Married w Children, or South Park
  • K3Nv2 @ K3Nv2:
    Stremio ruined my need for nas
  • BigOnYa @ BigOnYa:
    I stream from Nas to firestick, one on every tv, and use Kodi. I'm happy w it, plays everything. (I pirate/torrent shows/movies on pc, and put on nas)
  • K3Nv2 @ K3Nv2:
    Kodi repost are still pretty popular
  • BigOnYa @ BigOnYa:
    What the hell is Kodi reposts? what do you mean, or "Wut?" -xdqwerty
  • K3Nv2 @ K3Nv2:
    Google them basically web crawlers to movie sites
  • BigOnYa @ BigOnYa:
    oh you mean the 3rd party apps on Kodi, yea i know what you mean, yea there are still a few cool ones, in fact watched the new planet of the apes movie other night w wifey thru one, was good pic surprisingly, not a cam
  • BigOnYa @ BigOnYa:
    Damn, only $2.06 and free shipping. Gotta cost more for them to ship than $2.06
  • BigOnYa @ BigOnYa:
    I got my Dad a firestick for Xmas and showed him those 3rd party sites on Kodi, he loves it, all he watches anymore. He said he has got 3 letters from AT&T already about pirating, but he says f them, let them shut my internet off (He wants out of his AT&T contract anyways)
  • K3Nv2 @ K3Nv2:
    That's where stremio comes to play never got a letter about it
  • BigOnYa @ BigOnYa:
    I just use a VPN, even give him my login and password so can use it also, and he refuses, he's funny.
  • BigOnYa @ BigOnYa:
    I had to find and get him an old style flip phone even without text, cause thats what he wanted. No text, no internet, only phone calls. Old, old school.
    BigOnYa @ BigOnYa: I had to find and get him an old style flip phone even without text, cause thats what he wanted...