blob: 4dfea71966b9ed62fdd9a670e00509f378bc14ba [file] [log] [blame]
stroese0621f6f2004-12-16 18:43:13 +00001/*
2 * (C) Copyright 2003-2004
Detlev Zundel792a09e2009-05-13 10:54:10 +02003 * Gary Jennejohn, DENX Software Engineering, garyj@denx.de.
stroese0621f6f2004-12-16 18:43:13 +00004 * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
Bartlomiej Siekaaddb2e12006-03-05 18:57:33 +010026
stroese0621f6f2004-12-16 18:43:13 +000027#include <command.h>
28#include <image.h>
29#include <asm/byteorder.h>
stroese0621f6f2004-12-16 18:43:13 +000030#include <fat.h>
Grant Likely735dd972007-02-20 09:04:34 +010031#include <part.h>
stroese0621f6f2004-12-16 18:43:13 +000032
33#include "auto_update.h"
34
35#ifdef CONFIG_AUTO_UPDATE
36
Jon Loeligerb9307262007-07-09 18:24:55 -050037#if !defined(CONFIG_CMD_FAT)
Jon Loeliger77a31852007-07-10 10:39:10 -050038#error "must define CONFIG_CMD_FAT"
stroese0621f6f2004-12-16 18:43:13 +000039#endif
40
41extern au_image_t au_image[];
42extern int N_AU_IMAGES;
43
Matthias Fuchs83975d02008-04-21 14:42:06 +020044/* where to load files into memory */
45#define LOAD_ADDR ((unsigned char *)0x100000)
46#define MAX_LOADSZ 0x1c00000
stroese0621f6f2004-12-16 18:43:13 +000047
48/* externals */
49extern int fat_register_device(block_dev_desc_t *, int);
50extern int file_fat_detectfs(void);
51extern long file_fat_read(const char *, void *, unsigned long);
Matthias Fuchs83975d02008-04-21 14:42:06 +020052long do_fat_read (const char *filename, void *buffer,
53 unsigned long maxsize, int dols);
stroese0621f6f2004-12-16 18:43:13 +000054extern int flash_sect_erase(ulong, ulong);
55extern int flash_sect_protect (int, ulong, ulong);
Stefan Roesea5477752005-10-20 16:39:16 +020056extern int flash_write (char *, ulong, ulong);
stroese0621f6f2004-12-16 18:43:13 +000057
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058extern block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
stroese0621f6f2004-12-16 18:43:13 +000059
stroese0621f6f2004-12-16 18:43:13 +000060int au_check_cksum_valid(int i, long nbytes)
61{
62 image_header_t *hdr;
stroese0621f6f2004-12-16 18:43:13 +000063
64 hdr = (image_header_t *)LOAD_ADDR;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010065#if defined(CONFIG_FIT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010066 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010067 puts ("Non legacy image format not supported\n");
68 return -1;
69 }
70#endif
stroese0621f6f2004-12-16 18:43:13 +000071
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010072 if ((au_image[i].type == AU_FIRMWARE) &&
73 (au_image[i].size != image_get_data_size (hdr))) {
stroese0621f6f2004-12-16 18:43:13 +000074 printf ("Image %s has wrong size\n", au_image[i].name);
75 return -1;
76 }
77
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010078 if (nbytes != (image_get_image_size (hdr))) {
stroese0621f6f2004-12-16 18:43:13 +000079 printf ("Image %s bad total SIZE\n", au_image[i].name);
80 return -1;
81 }
stroese0621f6f2004-12-16 18:43:13 +000082
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010083 /* check the data CRC */
84 if (!image_check_dcrc (hdr)) {
stroese0621f6f2004-12-16 18:43:13 +000085 printf ("Image %s bad data checksum\n", au_image[i].name);
86 return -1;
87 }
88 return 0;
89}
90
stroese0621f6f2004-12-16 18:43:13 +000091int au_check_header_valid(int i, long nbytes)
92{
93 image_header_t *hdr;
94 unsigned long checksum;
95
96 hdr = (image_header_t *)LOAD_ADDR;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010097#if defined(CONFIG_FIT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010098 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010099 puts ("Non legacy image format not supported\n");
100 return -1;
101 }
102#endif
103
stroese0621f6f2004-12-16 18:43:13 +0000104 /* check the easy ones first */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200105 if (nbytes < image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000106 printf ("Image %s bad header SIZE\n", au_image[i].name);
107 return -1;
108 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200109 if (!image_check_magic (hdr) || !image_check_arch (hdr, IH_ARCH_PPC)) {
stroese0621f6f2004-12-16 18:43:13 +0000110 printf ("Image %s bad MAGIC or ARCH\n", au_image[i].name);
111 return -1;
112 }
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100113 if (!image_check_hcrc (hdr)) {
stroese0621f6f2004-12-16 18:43:13 +0000114 printf ("Image %s bad header checksum\n", au_image[i].name);
115 return -1;
116 }
stroese0621f6f2004-12-16 18:43:13 +0000117
118 /* check the type - could do this all in one gigantic if() */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200119 if (((au_image[i].type & AU_TYPEMASK) == AU_FIRMWARE) &&
120 !image_check_type (hdr, IH_TYPE_FIRMWARE)) {
stroese0621f6f2004-12-16 18:43:13 +0000121 printf ("Image %s wrong type\n", au_image[i].name);
122 return -1;
123 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200124 if (((au_image[i].type & AU_TYPEMASK) == AU_SCRIPT) &&
125 !image_check_type (hdr, IH_TYPE_SCRIPT)) {
stroese0621f6f2004-12-16 18:43:13 +0000126 printf ("Image %s wrong type\n", au_image[i].name);
127 return -1;
128 }
129
130 /* recycle checksum */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100131 checksum = image_get_data_size (hdr);
stroese0621f6f2004-12-16 18:43:13 +0000132
stroese0621f6f2004-12-16 18:43:13 +0000133 return 0;
134}
135
stroese0621f6f2004-12-16 18:43:13 +0000136int au_do_update(int i, long sz)
137{
138 image_header_t *hdr;
139 char *addr;
140 long start, end;
141 int off, rc;
142 uint nbytes;
143 int k;
stroese0621f6f2004-12-16 18:43:13 +0000144
145 hdr = (image_header_t *)LOAD_ADDR;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100146#if defined(CONFIG_FIT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100147 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100148 puts ("Non legacy image format not supported\n");
149 return -1;
150 }
151#endif
stroese0621f6f2004-12-16 18:43:13 +0000152
Matthias Fuchs83975d02008-04-21 14:42:06 +0200153 switch (au_image[i].type & AU_TYPEMASK) {
stroese0621f6f2004-12-16 18:43:13 +0000154 case AU_SCRIPT:
155 printf("Executing script %s\n", au_image[i].name);
156
157 /* execute a script */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100158 if (image_check_type (hdr, IH_TYPE_SCRIPT)) {
159 addr = (char *)((char *)hdr + image_get_header_size ());
stroese0621f6f2004-12-16 18:43:13 +0000160 /* stick a NULL at the end of the script, otherwise */
161 /* parse_string_outer() runs off the end. */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100162 addr[image_get_data_size (hdr)] = 0;
stroese0621f6f2004-12-16 18:43:13 +0000163 addr += 8;
164
165 /*
166 * Replace cr/lf with ;
167 */
168 k = 0;
169 while (addr[k] != 0) {
170 if ((addr[k] == 10) || (addr[k] == 13)) {
171 addr[k] = ';';
172 }
173 k++;
174 }
175
176 run_command(addr, 0);
177 return 0;
178 }
179
180 break;
181
182 case AU_FIRMWARE:
183 case AU_NOR:
184 case AU_NAND:
185 start = au_image[i].start;
186 end = au_image[i].start + au_image[i].size - 1;
187
stroeseacdcd102005-03-16 20:58:31 +0000188 /*
189 * do not update firmware when image is already in flash.
190 */
191 if (au_image[i].type == AU_FIRMWARE) {
192 char *orig = (char*)start;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200193 char *new = (char *)((char *)hdr +
194 image_get_header_size ());
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100195 nbytes = image_get_data_size (hdr);
stroeseacdcd102005-03-16 20:58:31 +0000196
Matthias Fuchs83975d02008-04-21 14:42:06 +0200197 while (--nbytes) {
stroeseacdcd102005-03-16 20:58:31 +0000198 if (*orig++ != *new++) {
199 break;
200 }
201 }
202 if (!nbytes) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200203 printf ("Skipping firmware update - "
204 "images are identical\n");
stroeseacdcd102005-03-16 20:58:31 +0000205 break;
206 }
207 }
208
stroese0621f6f2004-12-16 18:43:13 +0000209 /* unprotect the address range */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200210 if (((au_image[i].type & AU_FLAGMASK) == AU_PROTECT) ||
211 (au_image[i].type == AU_FIRMWARE)) {
212 flash_sect_protect (0, start, end);
stroese0621f6f2004-12-16 18:43:13 +0000213 }
214
215 /*
216 * erase the address range.
217 */
218 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200219 printf ("Updating NOR FLASH with image %s\n",
220 au_image[i].name);
stroese0621f6f2004-12-16 18:43:13 +0000221 debug ("flash_sect_erase(%lx, %lx);\n", start, end);
Matthias Fuchs83975d02008-04-21 14:42:06 +0200222 flash_sect_erase (start, end);
stroese0621f6f2004-12-16 18:43:13 +0000223 }
224
225 udelay(10000);
226
227 /* strip the header - except for the kernel and ramdisk */
228 if (au_image[i].type != AU_FIRMWARE) {
229 addr = (char *)hdr;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100230 off = image_get_header_size ();
231 nbytes = image_get_image_size (hdr);
stroese0621f6f2004-12-16 18:43:13 +0000232 } else {
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100233 addr = (char *)((char *)hdr + image_get_header_size ());
stroese0621f6f2004-12-16 18:43:13 +0000234 off = 0;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100235 nbytes = image_get_data_size (hdr);
stroese0621f6f2004-12-16 18:43:13 +0000236 }
237
238 /*
239 * copy the data from RAM to FLASH
240 */
241 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200242 debug ("flash_write(%p, %lx, %x)\n",
243 addr, start, nbytes);
244 rc = flash_write ((char *)addr, start,
245 (nbytes + 1) & ~1);
stroese0621f6f2004-12-16 18:43:13 +0000246 } else {
Matthias Fuchse09f7ab2007-07-09 10:10:04 +0200247 rc = -1;
stroese0621f6f2004-12-16 18:43:13 +0000248 }
249 if (rc != 0) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200250 printf ("Flashing failed due to error %d\n", rc);
stroese0621f6f2004-12-16 18:43:13 +0000251 return -1;
252 }
253
254 /*
255 * check the dcrc of the copy
256 */
257 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200258 rc = crc32 (0, (uchar *)(start + off),
259 image_get_data_size (hdr));
stroese0621f6f2004-12-16 18:43:13 +0000260 }
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100261 if (rc != image_get_dcrc (hdr)) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200262 printf ("Image %s Bad Data Checksum After COPY\n",
263 au_image[i].name);
stroese0621f6f2004-12-16 18:43:13 +0000264 return -1;
265 }
266
267 /* protect the address range */
268 /* this assumes that ONLY the firmware is protected! */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200269 if (((au_image[i].type & AU_FLAGMASK) == AU_PROTECT) ||
270 (au_image[i].type == AU_FIRMWARE)) {
271 flash_sect_protect (1, start, end);
stroese0621f6f2004-12-16 18:43:13 +0000272 }
273
274 break;
275
276 default:
277 printf("Wrong image type selected!\n");
278 }
279
280 return 0;
281}
282
stroese0621f6f2004-12-16 18:43:13 +0000283static void process_macros (const char *input, char *output)
284{
285 char c, prev;
286 const char *varname_start = NULL;
287 int inputcnt = strlen (input);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200288 int outputcnt = CONFIG_SYS_CBSIZE;
stroese0621f6f2004-12-16 18:43:13 +0000289 int state = 0; /* 0 = waiting for '$' */
290 /* 1 = waiting for '(' or '{' */
291 /* 2 = waiting for ')' or '}' */
292 /* 3 = waiting for ''' */
293#ifdef DEBUG_PARSER
294 char *output_start = output;
295
Matthias Fuchs83975d02008-04-21 14:42:06 +0200296 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n",
297 strlen(input), input);
stroese0621f6f2004-12-16 18:43:13 +0000298#endif
299
Matthias Fuchs83975d02008-04-21 14:42:06 +0200300 prev = '\0'; /* previous character */
stroese0621f6f2004-12-16 18:43:13 +0000301
302 while (inputcnt && outputcnt) {
303 c = *input++;
304 inputcnt--;
305
Matthias Fuchs83975d02008-04-21 14:42:06 +0200306 if (state != 3) {
stroese0621f6f2004-12-16 18:43:13 +0000307 /* remove one level of escape characters */
308 if ((c == '\\') && (prev != '\\')) {
309 if (inputcnt-- == 0)
310 break;
311 prev = c;
312 c = *input++;
313 }
314 }
315
316 switch (state) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200317 case 0: /* Waiting for (unescaped) $ */
stroese0621f6f2004-12-16 18:43:13 +0000318 if ((c == '\'') && (prev != '\\')) {
319 state = 3;
320 break;
321 }
322 if ((c == '$') && (prev != '\\')) {
323 state++;
324 } else {
325 *(output++) = c;
326 outputcnt--;
327 }
328 break;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200329 case 1: /* Waiting for ( */
stroese0621f6f2004-12-16 18:43:13 +0000330 if (c == '(' || c == '{') {
331 state++;
332 varname_start = input;
333 } else {
334 state = 0;
335 *(output++) = '$';
336 outputcnt--;
337
338 if (outputcnt) {
339 *(output++) = c;
340 outputcnt--;
341 }
342 }
343 break;
344 case 2: /* Waiting for ) */
345 if (c == ')' || c == '}') {
346 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200347 char envname[CONFIG_SYS_CBSIZE], *envval;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200348 /* Varname # of chars */
349 int envcnt = input - varname_start - 1;
stroese0621f6f2004-12-16 18:43:13 +0000350
351 /* Get the varname */
352 for (i = 0; i < envcnt; i++) {
353 envname[i] = varname_start[i];
354 }
355 envname[i] = 0;
356
357 /* Get its value */
358 envval = getenv (envname);
359
360 /* Copy into the line if it exists */
361 if (envval != NULL)
362 while ((*envval) && outputcnt) {
363 *(output++) = *(envval++);
364 outputcnt--;
365 }
366 /* Look for another '$' */
367 state = 0;
368 }
369 break;
370 case 3: /* Waiting for ' */
371 if ((c == '\'') && (prev != '\\')) {
372 state = 0;
373 } else {
374 *(output++) = c;
375 outputcnt--;
376 }
377 break;
378 }
379 prev = c;
380 }
381
382 if (outputcnt)
383 *output = 0;
384
385#ifdef DEBUG_PARSER
386 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
Matthias Fuchs83975d02008-04-21 14:42:06 +0200387 strlen (output_start), output_start);
stroese0621f6f2004-12-16 18:43:13 +0000388#endif
389}
390
stroese0621f6f2004-12-16 18:43:13 +0000391/*
392 * this is called from board_init() after the hardware has been set up
393 * and is usable. That seems like a good time to do this.
394 * Right now the return value is ignored.
395 */
396int do_auto_update(void)
397{
Matthias Fuchs83975d02008-04-21 14:42:06 +0200398 block_dev_desc_t *stor_dev = NULL;
stroese0621f6f2004-12-16 18:43:13 +0000399 long sz;
400 int i, res, cnt, old_ctrlc, got_ctrlc;
401 char buffer[32];
402 char str[80];
Matthias Fuchs83975d02008-04-21 14:42:06 +0200403 int n;
stroese0621f6f2004-12-16 18:43:13 +0000404
Matthias Fuchs83975d02008-04-21 14:42:06 +0200405 if (ide_dev_desc[0].type != DEV_TYPE_UNKNOWN) {
406 stor_dev = get_dev ("ide", 0);
407 if (stor_dev == NULL) {
408 debug ("ide: unknown device\n");
409 return -1;
410 }
stroese0621f6f2004-12-16 18:43:13 +0000411 }
412
Matthias Fuchs83975d02008-04-21 14:42:06 +0200413 if (fat_register_device (stor_dev, 1) != 0) {
414 debug ("Unable to register ide disk 0:1\n");
stroese0621f6f2004-12-16 18:43:13 +0000415 return -1;
416 }
417
418 /*
419 * Check if magic file is present
420 */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200421 if ((n = do_fat_read (AU_MAGIC_FILE, buffer,
422 sizeof(buffer), LS_NO)) <= 0) {
423 debug ("No auto_update magic file (n=%d)\n", n);
stroese0621f6f2004-12-16 18:43:13 +0000424 return -1;
425 }
426
427#ifdef CONFIG_AUTO_UPDATE_SHOW
Matthias Fuchs83975d02008-04-21 14:42:06 +0200428 board_auto_update_show (1);
stroese0621f6f2004-12-16 18:43:13 +0000429#endif
430 puts("\nAutoUpdate Disk detected! Trying to update system...\n");
431
432 /* make sure that we see CTRL-C and save the old state */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200433 old_ctrlc = disable_ctrlc (0);
stroese0621f6f2004-12-16 18:43:13 +0000434
435 /* just loop thru all the possible files */
436 for (i = 0; i < N_AU_IMAGES; i++) {
437 /*
438 * Try to expand the environment var in the fname
439 */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200440 process_macros (au_image[i].name, str);
441 strcpy (au_image[i].name, str);
stroese0621f6f2004-12-16 18:43:13 +0000442
443 printf("Reading %s ...", au_image[i].name);
444 /* just read the header */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200445 sz = do_fat_read (au_image[i].name, LOAD_ADDR,
446 image_get_header_size (), LS_NO);
stroese0621f6f2004-12-16 18:43:13 +0000447 debug ("read %s sz %ld hdr %d\n",
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100448 au_image[i].name, sz, image_get_header_size ());
449 if (sz <= 0 || sz < image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000450 puts(" not found\n");
451 continue;
452 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200453 if (au_check_header_valid (i, sz) < 0) {
stroese0621f6f2004-12-16 18:43:13 +0000454 puts(" header not valid\n");
455 continue;
456 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200457 sz = do_fat_read (au_image[i].name, LOAD_ADDR,
458 MAX_LOADSZ, LS_NO);
stroese0621f6f2004-12-16 18:43:13 +0000459 debug ("read %s sz %ld hdr %d\n",
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100460 au_image[i].name, sz, image_get_header_size ());
461 if (sz <= 0 || sz <= image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000462 puts(" not found\n");
463 continue;
464 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200465 if (au_check_cksum_valid (i, sz) < 0) {
stroese0621f6f2004-12-16 18:43:13 +0000466 puts(" checksum not valid\n");
467 continue;
468 }
469 puts(" done\n");
470
471 do {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200472 res = au_do_update (i, sz);
stroese0621f6f2004-12-16 18:43:13 +0000473 /* let the user break out of the loop */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200474 if (ctrlc() || had_ctrlc ()) {
475 clear_ctrlc ();
stroese0621f6f2004-12-16 18:43:13 +0000476 if (res < 0)
477 got_ctrlc = 1;
478 break;
479 }
480 cnt++;
481 } while (res < 0);
482 }
483
484 /* restore the old state */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200485 disable_ctrlc (old_ctrlc);
stroese0621f6f2004-12-16 18:43:13 +0000486
487 puts("AutoUpdate finished\n\n");
488#ifdef CONFIG_AUTO_UPDATE_SHOW
Matthias Fuchs83975d02008-04-21 14:42:06 +0200489 board_auto_update_show (0);
stroese0621f6f2004-12-16 18:43:13 +0000490#endif
491
492 return 0;
493}
494
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200495int auto_update(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese0621f6f2004-12-16 18:43:13 +0000496{
497 do_auto_update();
498
499 return 0;
500}
501U_BOOT_CMD(
502 autoupd, 1, 1, auto_update,
Peter Tyser2fb26042009-01-27 18:03:12 -0600503 "Automatically update images",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200504 ""
stroese0621f6f2004-12-16 18:43:13 +0000505);
506#endif /* CONFIG_AUTO_UPDATE */