diff options
Diffstat (limited to 'bootloader/imx233.c')
-rw-r--r-- | bootloader/imx233.c | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/bootloader/imx233.c b/bootloader/imx233.c index 2238728817..75834c3757 100644 --- a/bootloader/imx233.c +++ b/bootloader/imx233.c @@ -156,23 +156,6 @@ void main(uint32_t arg, uint32_t addr) backlight_init(); button_init(); - /* dummy read, might be necessary to init things */ -#ifdef HAVE_BUTTON_DATA - int data; - button_read_device(&data); -#else - button_read_device(); -#endif - -#ifdef HAS_BUTTON_HOLD - if(button_hold()) - { - printf("Hold switch on"); - printf("Shutting down..."); - sleep(HZ); - power_off(); - } -#endif printf("%s: %s", MSG(240, "Ver", "Boot version"), RBVERSION); printf("%s: %x ", MSG(240, "Arg", "Boot arg"), arg); @@ -202,6 +185,24 @@ void main(uint32_t arg, uint32_t addr) if(usb_detect() == USB_INSERTED) usb_mode(HZ); + /* dummy read, might be necessary to init things */ +#ifdef HAVE_BUTTON_DATA + int data; + button_read_device(&data); +#else + button_read_device(); +#endif + +#ifdef HAS_BUTTON_HOLD + if(button_hold()) + { + printf("Hold switch on"); + printf("Shutting down..."); + sleep(HZ); + power_off(); + } +#endif + printf("Loading firmware"); loadbuffer = (unsigned char*)loadaddress; |