summaryrefslogtreecommitdiff
path: root/bootloader/x1000/recovery.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/x1000/recovery.c')
-rw-r--r--bootloader/x1000/recovery.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/bootloader/x1000/recovery.c b/bootloader/x1000/recovery.c
index 3d6a079af8..ffd6151858 100644
--- a/bootloader/x1000/recovery.c
+++ b/bootloader/x1000/recovery.c
@@ -39,8 +39,15 @@ struct menuitem {
39 39
40/* Defines the recovery menu contents */ 40/* Defines the recovery menu contents */
41static const struct menuitem recovery_items[] = { 41static const struct menuitem recovery_items[] = {
42 {MENUITEM_HEADING, "Boot select", NULL},
43 {MENUITEM_ACTION, "Rockbox", &boot_rockbox},
44#ifdef OF_PLAYER_NAME
45 {MENUITEM_ACTION, OF_PLAYER_NAME, &boot_of_player},
46#endif
47#ifdef OF_RECOVERY_NAME
48 {MENUITEM_ACTION, OF_RECOVERY_NAME, &boot_of_recovery},
49#endif
42 {MENUITEM_HEADING, "System", NULL}, 50 {MENUITEM_HEADING, "System", NULL},
43 {MENUITEM_ACTION, "Start Rockbox", &boot_rockbox},
44 {MENUITEM_ACTION, "USB mode", &usb_mode}, 51 {MENUITEM_ACTION, "USB mode", &usb_mode},
45 {MENUITEM_ACTION, "Shutdown", &shutdown}, 52 {MENUITEM_ACTION, "Shutdown", &shutdown},
46 {MENUITEM_ACTION, "Reboot", &reboot}, 53 {MENUITEM_ACTION, "Reboot", &reboot},