Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 31 additions & 64 deletions data/boot.cfg
Original file line number Diff line number Diff line change
@@ -1,68 +1,35 @@
// Boot menu configuration
boot_config =
{
// Default timeout in seconds
// If timeout = -1, disable autoboot
timeout = 3;

// 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; // SELECT

// Default boot entry
default = 0;

// Boot menu entries (11 max)
entries =
(
{
title = "ReiNand";
path = "/ReiNand.dat";
offset = "0x12000";
},
{
title = "rxTools";
path = "/rxTools/sys/code.bin";
offset = "0x12000";
key = 0; // key to override default boot entry (A)
},
{
title = "HomeBrewMenu";
path = "/boot_hb.3dsx";
},
{
title = "HomeMenu";
path = "homemenu"; // magic path for homemenu, do not change
},
{
title = "Reboot";
path = "reboot"; // magic path for reboot, do not change
},
{
title = "Shutdown";
path = "shutdown"; // magic path for poweroff, do not change
}
);

// RGB colors
theme =
{
bgTop1 = "4a0031";
bgTop2 = "6f0149";
bgBottom = "6f0149";
highlight = "dcdcdc";
borders = "ffffff";
font1 = "ffffff";
font2 = "000000"; // selection
bgImgTop = "/yourimage.bin"; // 400x240 pixels
bgImgBot = "/yourimage2.bin"; // 320x240 pixels
};
// Default timeout in secondes
// If timeout = -1, disable autoboot
timeout = 2;

// 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; // SELECT

// Default boot entry
default = 0;

// Boot menu entries (11 max)
entries =
(
{
title = "ReiNand";
path = "/reiNand.dat";
offset = "0x12000";
},
{
title = "HomeBrewMenu";
path = "/boot_hb.3dsx";
}
);
};