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
42
Location
Zagreb, Croatia
XP
86
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
42
Location
Zagreb, Croatia
XP
86
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
  • BigOnYa @ BigOnYa:
    True, everything almost double nowadays
  • K3Nv2 @ K3Nv2:
    But I could go to Aldis and get a cookie pie for like $4
  • BigOnYa @ BigOnYa:
    Or use your new cooking pan and make some, don't mind the Old leftover foods mixed in.
  • K3Nv2 @ K3Nv2:
    Just eat plain flour around cops
  • BigOnYa @ BigOnYa:
    thats Gluten abuse, they would shoot you
  • K3Nv2 @ K3Nv2:
    Depends on the color chart
  • K3Nv2 @ K3Nv2:
    Wheat flour has a lower chance at survival
  • Veho @ Veho:
    Isn't wheat flour the whitest of the white?
  • Veho @ Veho:
    Rye would get shot at sight.
    +1
  • K3Nv2 @ K3Nv2:
    Depends
    img_5941-1.jpeg
    everyone mixing their flour now days
  • Veho @ Veho:
    That's whole wheat, right? Because all purpose flour is also made from wheat.
  • K3Nv2 @ K3Nv2:
    I'm not a flour expert I just snort it
  • BigOnYa @ BigOnYa:
    There also is black rice flour, and its really black colored
  • Veho @ Veho:
    Bruh that's gray.
  • K3Nv2 @ K3Nv2:
    That's ancientboi color
    +1
  • Veho @ Veho:
    You need to add some activated charcoal.
    +1
  • BigOnYa @ BigOnYa:
    I've seen some that are dark dark, my wifey uses it sometimes in her bs recipes
  • Veho @ Veho:
    Cool.
  • SylverReZ @ SylverReZ:
    @BigOnYa, Seems like your wifey likes hers black. :creep:
  • Veho @ Veho:
    "BS" stands for "Bowel Scraping" because that's what whole grain does.
    +1
  • K3Nv2 @ K3Nv2:
    I've been eating honey wheat bread scrumptious
  • K3Nv2 @ K3Nv2:
    https://a.co/d/9xDkOHc lol living on the edge
    K3Nv2 @ K3Nv2: https://a.co/d/9xDkOHc lol living on the edge