From 973ee5d8d9ecb16bfbe69b9869f7dd57159765c2 Mon Sep 17 00:00:00 2001 From: Miika Pekkarinen Date: Mon, 4 Sep 2006 16:06:11 +0000 Subject: Gracefully shutdown unless firmware is found. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10879 a1c6a512-1295-4272-9138-f99709370657 --- bootloader/main.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'bootloader/main.c') diff --git a/bootloader/main.c b/bootloader/main.c index 7c2b1257a9..77866573e9 100644 --- a/bootloader/main.c +++ b/bootloader/main.c @@ -508,10 +508,20 @@ void main(void) eeprom_settings_store(); #endif - if(i == 0) + if (i == 0) start_firmware(); - start_iriver_fw(); + if (detect_flashed_rockbox()) + { + printf("No firmware found on disk"); + printf("Powering off..."); + lcd_update(); + ata_sleep(); + sleep(HZ*4); + power_off(); + } + else + start_iriver_fw(); #endif /* IAUDIO_X5 */ } -- cgit v1.2.3