From 8b3ef09d66547dd979f2360641bb2707648c073d Mon Sep 17 00:00:00 2001 From: kaijunoshoes Date: Mon, 22 Aug 2016 22:01:38 -0700 Subject: [PATCH] Update boot.cfg --- data/boot.cfg | 95 +++++++++++++++++---------------------------------- 1 file changed, 31 insertions(+), 64 deletions(-) diff --git a/data/boot.cfg b/data/boot.cfg index c2dfef6..0938b79 100644 --- a/data/boot.cfg +++ b/data/boot.cfg @@ -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"; + } + ); }; -