diff options
Diffstat (limited to 'board/trab/auto_update.c')
-rw-r--r-- | board/trab/auto_update.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index 345d2d4..40a92fd 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -204,6 +204,7 @@ extern int flash_write (uchar *, ulong, ulong); extern int i2c_write_multiple (uchar, uint, int, void *, int); extern int i2c_read_multiple (uchar, uint, int, void *, int); extern block_dev_desc_t *get_dev (char*, int); +extern int u_boot_hush_start(void); int au_check_valid(int idx, long nbytes) @@ -538,6 +539,8 @@ do_auto_update(void) aufl_layout[3].start = start; aufl_layout[3].end = end; } + /* make certain that HUSH is runnable */ + u_boot_hush_start(); /* make sure that we see CTRL-C and save the old state */ old_ctrlc = disable_ctrlc(0); |