diff options
author | William Wilgus <wilgus.william@gmail.com> | 2024-04-03 15:57:06 -0400 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2024-04-03 15:57:06 -0400 |
commit | 3714288f7aa7182c3e60993b967343cdea968476 (patch) | |
tree | 8f8889215a5992060d8a91a4078077f0b44ecfcc | |
parent | 8c994db2472f5e399cda4bfd37e1da235913aa78 (diff) | |
download | rockbox-3714288f7a.tar.gz rockbox-3714288f7a.zip |
add bootpath to bootdata debug menu
show the full path to the currently booted firmware
Change-Id: I9c0b4335ef410a0a5132f1097a29368306497206
-rw-r--r-- | apps/debug_menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index c0f6904c8e..245cd38627 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2557,6 +2557,7 @@ static bool dbg_boot_data(void) simplelist_addline("Boot drive: %d", (int)boot_data.boot_drive); simplelist_addline("Boot partition: %d", (int)boot_data.boot_partition); } + simplelist_addline("Boot path: %s%s/%s", root_realpath(), BOOTDIR, BOOTFILE); } simplelist_addline("Bootdata RAW:"); |