Homebrew MenuHax 2.0 Custom Main-Screen Images

nerirififi

Well-Known Member
Member
Joined
Nov 18, 2015
Messages
160
Trophies
0
Age
43
XP
607
Country
France
Hello,

Menu HAX works great, i change my image display ( thanks to the post )

i configure my boot with CtrBootManager, and i boot on RX TOOLS on startup without touching any button.

So if i touch any button at the startup of the console i boot on my sysnand.

I would like to know if there is a way to never boot sysnand with menu hax configuration or ctrbootmanger ?
 

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
Hello,

Menu HAX works great, i change my image display ( thanks to the post )

i configure my boot with CtrBootManager, and i boot on RX TOOLS on startup without touching any button.

So if i touch any button at the startup of the console i boot on my sysnand.

I would like to know if there is a way to never boot sysnand with menu hax configuration or ctrbootmanger ?
So what are you gonna do when you need to get into sysnand? (not that you need anyway, but you never know why you need to be there?
 

Hayleia

Well-Known Member
Member
Joined
Feb 26, 2015
Messages
1,485
Trophies
0
XP
1,294
Country
France
Yeah, I wouldn't advise blocking sysNAND completely (assuming it's possible).
But if you want to kind of block it, just put a very stupid key combination to boot to sysNAND in menuhax_installer. IIRC, menuhax supports combinations of several keys (I use L+R) so maybe you can put something like L+R+A+B to skip menuhax, boot menuhax (and rxTools) otherwise, and you'll virtually never boot to sysNAND.
And this allows you to set single keys for your CtrBootManager entries without conflicting with menuhax's key combo.
 
Last edited by Hayleia,

ShadowOne333

QVID PRO QVO
Editorial Team
Joined
Jan 17, 2013
Messages
12,212
Trophies
2
XP
34,157
Country
Mexico
Quick question.

I've been seeing several images that say "L to boot this, R to boot that"
Is it possible to like.

"L to boot Homebrew Launcher"
"R to boot rxTools" or sysNAND if I have rxTools as autoboot.

And if it's possible, how can I do so?
 

Hayleia

Well-Known Member
Member
Joined
Feb 26, 2015
Messages
1,485
Trophies
0
XP
1,294
Country
France
Use CtrBootManager (or something else that does the same thing).
You can then set up keys to launch things or to access to a menu that lets you choose between several booting options, etc.

I'm not sure that R to boot rxTools and L to boot HBL is a good idea though. That would make booting into rxTool's menu quite hard (or I guess you'll just go to CtrBootManager's menu).

Just as an example, I used:
L+R to skip menuhax (boot to sysNAND (and trigger camera :P))
R to boot HBL
rxTools by default
L is rxTools key to launch its menu
SELECT to display CtrBootManager's menu
 
Last edited by Hayleia,
  • Like
Reactions: ShadowOne333

ShadowOne333

QVID PRO QVO
Editorial Team
Joined
Jan 17, 2013
Messages
12,212
Trophies
2
XP
34,157
Country
Mexico
Use CtrBootManager (or something else that does the same thing).
You can then set up keys to launch things or to access to a menu that lets you choose between several booting options, etc.

I'm not sure that R to boot rxTools and L to boot HBL is a good idea though. That would make booting into rxTool's menu quite hard (or I guess you'll just go to CtrBootManager's menu).

Just as an example, I used:
L+R to skip menuhax (boot to sysNAND (and trigger camera :P))
R to boot HBL
rxTools by default
L is rxTools key to launch its menu
SELECT to display CtrBootManager's menu
Thank you!
I kind like your mapping. :)

I will use it for sure.
Could you post your boot.cfg file so I can take a peek at it?
 

Hayleia

Well-Known Member
Member
Joined
Feb 26, 2015
Messages
1,485
Trophies
0
XP
1,294
Country
France
Yes, here it is.
Code:
// Boot menu configuration
boot_config :
{
   // Default timeout in secondes
   // If timeout = -1, disable autoboot
   timeout = 0;

   // Some devices (n3ds?) seems to have
   // some timing problems when using timeout=0 (autoboot).
   // You may increase this value to improve boot success rate.
   // Default delay (8) should be good for o3ds, 2 seems good for n3ds
   autobootfix = 8;

   // if timeout = 0 (autoboot),
   // hold this key to enter the menu
   // keycode list : https://goo.gl/4XLDIL
   recovery = 2;

   // Default boot entry
   default = 0;

   // Boot menu entries (11 max)
   entries =
   (
     {
       title = "rxTools";
       path = "/rxTools/sys/code.bin";
       offset = "0x12000";
     },
     {
       title = "Homebrew Menu";
       path = "/boot_hb.3dsx";
       key = 8; // R
     },
     {
       title = "Power Off";
       path = "/3ds/3DSQuickShutdown-Always/3DSQuickShutdown-Always.3dsx";
     }
   );
};

The Power Off entry is kind of useless since it can be found in "more", but it used to be the default entry (so that random people just can't turn my 3DS on and do bullsheep on it) but that was mostly annoying for me in the end :P
 

ShadowOne333

QVID PRO QVO
Editorial Team
Joined
Jan 17, 2013
Messages
12,212
Trophies
2
XP
34,157
Country
Mexico
Yes, here it is.
Code:
// Boot menu configuration
boot_config :
{
   // Default timeout in secondes
   // If timeout = -1, disable autoboot
   timeout = 0;

   // Some devices (n3ds?) seems to have
   // some timing problems when using timeout=0 (autoboot).
   // You may increase this value to improve boot success rate.
   // Default delay (8) should be good for o3ds, 2 seems good for n3ds
   autobootfix = 8;

   // if timeout = 0 (autoboot),
   // hold this key to enter the menu
   // keycode list : https://goo.gl/4XLDIL
   recovery = 2;

   // Default boot entry
   default = 0;

   // Boot menu entries (11 max)
   entries =
   (
     {
       title = "rxTools";
       path = "/rxTools/sys/code.bin";
       offset = "0x12000";
     },
     {
       title = "Homebrew Menu";
       path = "/boot_hb.3dsx";
       key = 8; // R
     },
     {
       title = "Power Off";
       path = "/3ds/3DSQuickShutdown-Always/3DSQuickShutdown-Always.3dsx";
     }
   );
};

The Power Off entry is kind of useless since it can be found in "more", but it used to be the default entry (so that random people just can't turn my 3DS on and do bullsheep on it) but that was mostly annoying for me in the end :P
Only config I didn't see was the L+R combo to boot sysNAND.
Is it somewhere in there or is that somewhere else?

Edit:
NVM, I just did some research and found out that in order to make MenuHax boot SysNAND ONLY with a button combo I should use Type 2 and then input the button combo I desire.
I chose Down+B so I don't trigger the camera on boot. :P
 
Last edited by ShadowOne333,

VashTS

Beat it, son
Member
Joined
Mar 14, 2009
Messages
4,308
Trophies
1
Age
39
Location
Upstate NY
XP
3,763
Country
United States
i kinda want to use this, but im in gateway land :(

will my gateway emunand work with rxtools? if so, i imagine this requires 9.2 and prob doesn't work on 4.5?

i appreciate any info and any pointers to the proper info!
 

VashTS

Beat it, son
Member
Joined
Mar 14, 2009
Messages
4,308
Trophies
1
Age
39
Location
Upstate NY
XP
3,763
Country
United States
this is awesome! just got it running on my 2ds, makes loading the homebrew menu so easy and convenient!

any tips on how to get my sysnand on my 4.5 3ds up to 9.2? i can restore the original back up of 9.2 i suppose...
 

dark_samus3

Well-Known Member
Member
Joined
May 30, 2015
Messages
2,372
Trophies
0
XP
2,042
Country
United States
this is awesome! just got it running on my 2ds, makes loading the homebrew menu so easy and convenient!

any tips on how to get my sysnand on my 4.5 3ds up to 9.2? i can restore the original back up of 9.2 i suppose...

Yeah that's the way to go... Launch gateway launcher and hold up on the dpad and push A and it'll let you restore your backup
 
  • Like
Reactions: VashTS

VashTS

Beat it, son
Member
Joined
Mar 14, 2009
Messages
4,308
Trophies
1
Age
39
Location
Upstate NY
XP
3,763
Country
United States
so then my option to get into gateway would probably on be the browser exploit though right?

i dont have cubic ninja, oot or ironfall on my sysnand on my 3dsxl.

isnt there an issue with the browser as of late?
 

Techinicabor

Well-Known Member
Newcomer
Joined
Nov 15, 2015
Messages
50
Trophies
0
Age
24
Location
Frisco, TX
XP
140
Country
United States
I may as well post mine. This was requested by me when 2.0 was almost finished, and yls8 was asking for imagedisplays. I was wanting a dialog not unlike IRIX booting on SGI hardware. @CheatFreak47 responded swiftly with this.
(Image is from GitHub, imagedisplay.png is attached)
0ec9303c-7de3-11e5-9321-28be7e3a3970.PNG
 

Attachments

  • imagedisplay.png
    imagedisplay.png
    15.3 KB · Views: 279
Last edited by Techinicabor,

izy

Advanced Tech Pleb
Member
Joined
Sep 17, 2010
Messages
2,311
Trophies
2
XP
4,027
Country
United Kingdom
imagedisplay.png



Just Something a littler cleaner than most.

The amount of artifacts on the original image was a goddamn pain to cleanup
 
  • Like
Reactions: peteruk

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • No one is chatting at the moment.
  • BigOnYa @ BigOnYa:
    I don't trust the free ones, but ipvanish I've used for couple years now, n like
  • Psionic Roshambo @ Psionic Roshambo:
    I wonder if they could get CPUs to run that hot then use the heat to power a steam turbine to power the CPUs....
  • BigOnYa @ BigOnYa:
    Good idea, or at least power the GPU
  • Psionic Roshambo @ Psionic Roshambo:
    It's not the movies or games downloads that I would worry about, like breaking into networks, downloading encrypted things, spying on network traffic. I have seen so many "Top Secret" seals on files when I was a kid
  • Psionic Roshambo @ Psionic Roshambo:
    I was obsessed with finding UFOs, a surprising amount of US files where stashed on computers in other countries, China back in the early 90s omg sooo much
  • BigOnYa @ BigOnYa:
    Yea that crazy, I've never tried hack into anything, I just pirate, and my ISP have send me 3-4 letters, so had to VPN it
  • Psionic Roshambo @ Psionic Roshambo:
    Ship to ship communication software for the Navy although without access to the encrypting chips it was mostly useless
  • Psionic Roshambo @ Psionic Roshambo:
    I bet now a 4090 could probably crack it? Hmmm maybe not even back then I'm pretty sure they where using like 1024 bit encryption
  • Psionic Roshambo @ Psionic Roshambo:
    Yayyy the one set finished 324GBs lol
  • Psionic Roshambo @ Psionic Roshambo:
    Compressed....
  • Psionic Roshambo @ Psionic Roshambo:
    I wonder how many years that would have taken on a 56K modem lol
  • Psionic Roshambo @ Psionic Roshambo:
    18000 hours lol
  • Psionic Roshambo @ Psionic Roshambo:
    750 days lol
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    So Internet is very much faster now lol
  • BigOnYa @ BigOnYa:
    "Time Remaining- 2 years, 9 girlfriends, 6 hairstyles, please standby..."
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I remember one time I downloaded like a 500MB ISO file on 56K and that literally took like 2 days
  • Psionic Roshambo @ Psionic Roshambo:
    I had some sort of resume thing, I remember the software had chains
  • Psionic Roshambo @ Psionic Roshambo:
    Damned if I can't remember.the name though
  • Psionic Roshambo @ Psionic Roshambo:
    Some sort of download management app
  • BigOnYa @ BigOnYa:
    Ok good chatting, I'm off to the bar, to shoot some pool, nighty night.
    +1
  • BakerMan @ BakerMan:
    hey psi
  • BakerMan @ BakerMan:
    i call your girl lyndon the way she b on my johnson
    BakerMan @ BakerMan: i call your girl lyndon the way she b on my johnson