blob: fc60545d048b249febd17993929c17192d191193 [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;
stroese0621f6f2004-12-16 18:43:13 +000094
95 hdr = (image_header_t *)LOAD_ADDR;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010096#if defined(CONFIG_FIT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010097 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010098 puts ("Non legacy image format not supported\n");
99 return -1;
100 }
101#endif
102
stroese0621f6f2004-12-16 18:43:13 +0000103 /* check the easy ones first */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200104 if (nbytes < image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000105 printf ("Image %s bad header SIZE\n", au_image[i].name);
106 return -1;
107 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200108 if (!image_check_magic (hdr) || !image_check_arch (hdr, IH_ARCH_PPC)) {
stroese0621f6f2004-12-16 18:43:13 +0000109 printf ("Image %s bad MAGIC or ARCH\n", au_image[i].name);
110 return -1;
111 }
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100112 if (!image_check_hcrc (hdr)) {
stroese0621f6f2004-12-16 18:43:13 +0000113 printf ("Image %s bad header checksum\n", au_image[i].name);
114 return -1;
115 }
stroese0621f6f2004-12-16 18:43:13 +0000116
117 /* check the type - could do this all in one gigantic if() */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200118 if (((au_image[i].type & AU_TYPEMASK) == AU_FIRMWARE) &&
119 !image_check_type (hdr, IH_TYPE_FIRMWARE)) {
stroese0621f6f2004-12-16 18:43:13 +0000120 printf ("Image %s wrong type\n", au_image[i].name);
121 return -1;
122 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200123 if (((au_image[i].type & AU_TYPEMASK) == AU_SCRIPT) &&
124 !image_check_type (hdr, IH_TYPE_SCRIPT)) {
stroese0621f6f2004-12-16 18:43:13 +0000125 printf ("Image %s wrong type\n", au_image[i].name);
126 return -1;
127 }
128
stroese0621f6f2004-12-16 18:43:13 +0000129 return 0;
130}
131
stroese0621f6f2004-12-16 18:43:13 +0000132int au_do_update(int i, long sz)
133{
134 image_header_t *hdr;
135 char *addr;
136 long start, end;
137 int off, rc;
138 uint nbytes;
139 int k;
stroese0621f6f2004-12-16 18:43:13 +0000140
141 hdr = (image_header_t *)LOAD_ADDR;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100142#if defined(CONFIG_FIT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100143 if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100144 puts ("Non legacy image format not supported\n");
145 return -1;
146 }
147#endif
stroese0621f6f2004-12-16 18:43:13 +0000148
Matthias Fuchs83975d02008-04-21 14:42:06 +0200149 switch (au_image[i].type & AU_TYPEMASK) {
stroese0621f6f2004-12-16 18:43:13 +0000150 case AU_SCRIPT:
151 printf("Executing script %s\n", au_image[i].name);
152
153 /* execute a script */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100154 if (image_check_type (hdr, IH_TYPE_SCRIPT)) {
155 addr = (char *)((char *)hdr + image_get_header_size ());
stroese0621f6f2004-12-16 18:43:13 +0000156 /* stick a NULL at the end of the script, otherwise */
157 /* parse_string_outer() runs off the end. */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100158 addr[image_get_data_size (hdr)] = 0;
stroese0621f6f2004-12-16 18:43:13 +0000159 addr += 8;
160
161 /*
162 * Replace cr/lf with ;
163 */
164 k = 0;
165 while (addr[k] != 0) {
166 if ((addr[k] == 10) || (addr[k] == 13)) {
167 addr[k] = ';';
168 }
169 k++;
170 }
171
172 run_command(addr, 0);
173 return 0;
174 }
175
176 break;
177
178 case AU_FIRMWARE:
179 case AU_NOR:
180 case AU_NAND:
181 start = au_image[i].start;
182 end = au_image[i].start + au_image[i].size - 1;
183
stroeseacdcd102005-03-16 20:58:31 +0000184 /*
185 * do not update firmware when image is already in flash.
186 */
187 if (au_image[i].type == AU_FIRMWARE) {
188 char *orig = (char*)start;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200189 char *new = (char *)((char *)hdr +
190 image_get_header_size ());
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100191 nbytes = image_get_data_size (hdr);
stroeseacdcd102005-03-16 20:58:31 +0000192
Matthias Fuchs83975d02008-04-21 14:42:06 +0200193 while (--nbytes) {
stroeseacdcd102005-03-16 20:58:31 +0000194 if (*orig++ != *new++) {
195 break;
196 }
197 }
198 if (!nbytes) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200199 printf ("Skipping firmware update - "
200 "images are identical\n");
stroeseacdcd102005-03-16 20:58:31 +0000201 break;
202 }
203 }
204
stroese0621f6f2004-12-16 18:43:13 +0000205 /* unprotect the address range */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200206 if (((au_image[i].type & AU_FLAGMASK) == AU_PROTECT) ||
207 (au_image[i].type == AU_FIRMWARE)) {
208 flash_sect_protect (0, start, end);
stroese0621f6f2004-12-16 18:43:13 +0000209 }
210
211 /*
212 * erase the address range.
213 */
214 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200215 printf ("Updating NOR FLASH with image %s\n",
216 au_image[i].name);
stroese0621f6f2004-12-16 18:43:13 +0000217 debug ("flash_sect_erase(%lx, %lx);\n", start, end);
Matthias Fuchs83975d02008-04-21 14:42:06 +0200218 flash_sect_erase (start, end);
stroese0621f6f2004-12-16 18:43:13 +0000219 }
220
221 udelay(10000);
222
223 /* strip the header - except for the kernel and ramdisk */
224 if (au_image[i].type != AU_FIRMWARE) {
225 addr = (char *)hdr;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100226 off = image_get_header_size ();
227 nbytes = image_get_image_size (hdr);
stroese0621f6f2004-12-16 18:43:13 +0000228 } else {
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229 addr = (char *)((char *)hdr + image_get_header_size ());
stroese0621f6f2004-12-16 18:43:13 +0000230 off = 0;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100231 nbytes = image_get_data_size (hdr);
stroese0621f6f2004-12-16 18:43:13 +0000232 }
233
234 /*
235 * copy the data from RAM to FLASH
236 */
237 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200238 debug ("flash_write(%p, %lx, %x)\n",
239 addr, start, nbytes);
240 rc = flash_write ((char *)addr, start,
241 (nbytes + 1) & ~1);
stroese0621f6f2004-12-16 18:43:13 +0000242 } else {
Matthias Fuchse09f7ab2007-07-09 10:10:04 +0200243 rc = -1;
stroese0621f6f2004-12-16 18:43:13 +0000244 }
245 if (rc != 0) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200246 printf ("Flashing failed due to error %d\n", rc);
stroese0621f6f2004-12-16 18:43:13 +0000247 return -1;
248 }
249
250 /*
251 * check the dcrc of the copy
252 */
253 if (au_image[i].type != AU_NAND) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200254 rc = crc32 (0, (uchar *)(start + off),
255 image_get_data_size (hdr));
stroese0621f6f2004-12-16 18:43:13 +0000256 }
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100257 if (rc != image_get_dcrc (hdr)) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200258 printf ("Image %s Bad Data Checksum After COPY\n",
259 au_image[i].name);
stroese0621f6f2004-12-16 18:43:13 +0000260 return -1;
261 }
262
263 /* protect the address range */
264 /* this assumes that ONLY the firmware is protected! */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200265 if (((au_image[i].type & AU_FLAGMASK) == AU_PROTECT) ||
266 (au_image[i].type == AU_FIRMWARE)) {
267 flash_sect_protect (1, start, end);
stroese0621f6f2004-12-16 18:43:13 +0000268 }
269
270 break;
271
272 default:
273 printf("Wrong image type selected!\n");
274 }
275
276 return 0;
277}
278
stroese0621f6f2004-12-16 18:43:13 +0000279static void process_macros (const char *input, char *output)
280{
281 char c, prev;
282 const char *varname_start = NULL;
283 int inputcnt = strlen (input);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200284 int outputcnt = CONFIG_SYS_CBSIZE;
stroese0621f6f2004-12-16 18:43:13 +0000285 int state = 0; /* 0 = waiting for '$' */
286 /* 1 = waiting for '(' or '{' */
287 /* 2 = waiting for ')' or '}' */
288 /* 3 = waiting for ''' */
289#ifdef DEBUG_PARSER
290 char *output_start = output;
291
Matthias Fuchs83975d02008-04-21 14:42:06 +0200292 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n",
293 strlen(input), input);
stroese0621f6f2004-12-16 18:43:13 +0000294#endif
295
Matthias Fuchs83975d02008-04-21 14:42:06 +0200296 prev = '\0'; /* previous character */
stroese0621f6f2004-12-16 18:43:13 +0000297
298 while (inputcnt && outputcnt) {
299 c = *input++;
300 inputcnt--;
301
Matthias Fuchs83975d02008-04-21 14:42:06 +0200302 if (state != 3) {
stroese0621f6f2004-12-16 18:43:13 +0000303 /* remove one level of escape characters */
304 if ((c == '\\') && (prev != '\\')) {
305 if (inputcnt-- == 0)
306 break;
307 prev = c;
308 c = *input++;
309 }
310 }
311
312 switch (state) {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200313 case 0: /* Waiting for (unescaped) $ */
stroese0621f6f2004-12-16 18:43:13 +0000314 if ((c == '\'') && (prev != '\\')) {
315 state = 3;
316 break;
317 }
318 if ((c == '$') && (prev != '\\')) {
319 state++;
320 } else {
321 *(output++) = c;
322 outputcnt--;
323 }
324 break;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200325 case 1: /* Waiting for ( */
stroese0621f6f2004-12-16 18:43:13 +0000326 if (c == '(' || c == '{') {
327 state++;
328 varname_start = input;
329 } else {
330 state = 0;
331 *(output++) = '$';
332 outputcnt--;
333
334 if (outputcnt) {
335 *(output++) = c;
336 outputcnt--;
337 }
338 }
339 break;
340 case 2: /* Waiting for ) */
341 if (c == ')' || c == '}') {
342 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200343 char envname[CONFIG_SYS_CBSIZE], *envval;
Matthias Fuchs83975d02008-04-21 14:42:06 +0200344 /* Varname # of chars */
345 int envcnt = input - varname_start - 1;
stroese0621f6f2004-12-16 18:43:13 +0000346
347 /* Get the varname */
348 for (i = 0; i < envcnt; i++) {
349 envname[i] = varname_start[i];
350 }
351 envname[i] = 0;
352
353 /* Get its value */
354 envval = getenv (envname);
355
356 /* Copy into the line if it exists */
357 if (envval != NULL)
358 while ((*envval) && outputcnt) {
359 *(output++) = *(envval++);
360 outputcnt--;
361 }
362 /* Look for another '$' */
363 state = 0;
364 }
365 break;
366 case 3: /* Waiting for ' */
367 if ((c == '\'') && (prev != '\\')) {
368 state = 0;
369 } else {
370 *(output++) = c;
371 outputcnt--;
372 }
373 break;
374 }
375 prev = c;
376 }
377
378 if (outputcnt)
379 *output = 0;
380
381#ifdef DEBUG_PARSER
382 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
Matthias Fuchs83975d02008-04-21 14:42:06 +0200383 strlen (output_start), output_start);
stroese0621f6f2004-12-16 18:43:13 +0000384#endif
385}
386
stroese0621f6f2004-12-16 18:43:13 +0000387/*
388 * this is called from board_init() after the hardware has been set up
389 * and is usable. That seems like a good time to do this.
390 * Right now the return value is ignored.
391 */
392int do_auto_update(void)
393{
Matthias Fuchs83975d02008-04-21 14:42:06 +0200394 block_dev_desc_t *stor_dev = NULL;
stroese0621f6f2004-12-16 18:43:13 +0000395 long sz;
Stefan Roese80b68f72011-11-15 08:03:33 +0000396 int i, res, cnt, old_ctrlc;
stroese0621f6f2004-12-16 18:43:13 +0000397 char buffer[32];
398 char str[80];
Matthias Fuchs83975d02008-04-21 14:42:06 +0200399 int n;
stroese0621f6f2004-12-16 18:43:13 +0000400
Matthias Fuchs83975d02008-04-21 14:42:06 +0200401 if (ide_dev_desc[0].type != DEV_TYPE_UNKNOWN) {
402 stor_dev = get_dev ("ide", 0);
403 if (stor_dev == NULL) {
404 debug ("ide: unknown device\n");
405 return -1;
406 }
stroese0621f6f2004-12-16 18:43:13 +0000407 }
408
Matthias Fuchs83975d02008-04-21 14:42:06 +0200409 if (fat_register_device (stor_dev, 1) != 0) {
410 debug ("Unable to register ide disk 0:1\n");
stroese0621f6f2004-12-16 18:43:13 +0000411 return -1;
412 }
413
414 /*
415 * Check if magic file is present
416 */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200417 if ((n = do_fat_read (AU_MAGIC_FILE, buffer,
418 sizeof(buffer), LS_NO)) <= 0) {
419 debug ("No auto_update magic file (n=%d)\n", n);
stroese0621f6f2004-12-16 18:43:13 +0000420 return -1;
421 }
422
423#ifdef CONFIG_AUTO_UPDATE_SHOW
Matthias Fuchs83975d02008-04-21 14:42:06 +0200424 board_auto_update_show (1);
stroese0621f6f2004-12-16 18:43:13 +0000425#endif
426 puts("\nAutoUpdate Disk detected! Trying to update system...\n");
427
428 /* make sure that we see CTRL-C and save the old state */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200429 old_ctrlc = disable_ctrlc (0);
stroese0621f6f2004-12-16 18:43:13 +0000430
431 /* just loop thru all the possible files */
432 for (i = 0; i < N_AU_IMAGES; i++) {
433 /*
434 * Try to expand the environment var in the fname
435 */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200436 process_macros (au_image[i].name, str);
437 strcpy (au_image[i].name, str);
stroese0621f6f2004-12-16 18:43:13 +0000438
439 printf("Reading %s ...", au_image[i].name);
440 /* just read the header */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200441 sz = do_fat_read (au_image[i].name, LOAD_ADDR,
442 image_get_header_size (), LS_NO);
stroese0621f6f2004-12-16 18:43:13 +0000443 debug ("read %s sz %ld hdr %d\n",
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100444 au_image[i].name, sz, image_get_header_size ());
445 if (sz <= 0 || sz < image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000446 puts(" not found\n");
447 continue;
448 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200449 if (au_check_header_valid (i, sz) < 0) {
stroese0621f6f2004-12-16 18:43:13 +0000450 puts(" header not valid\n");
451 continue;
452 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200453 sz = do_fat_read (au_image[i].name, LOAD_ADDR,
454 MAX_LOADSZ, LS_NO);
stroese0621f6f2004-12-16 18:43:13 +0000455 debug ("read %s sz %ld hdr %d\n",
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100456 au_image[i].name, sz, image_get_header_size ());
457 if (sz <= 0 || sz <= image_get_header_size ()) {
stroese0621f6f2004-12-16 18:43:13 +0000458 puts(" not found\n");
459 continue;
460 }
Matthias Fuchs83975d02008-04-21 14:42:06 +0200461 if (au_check_cksum_valid (i, sz) < 0) {
stroese0621f6f2004-12-16 18:43:13 +0000462 puts(" checksum not valid\n");
463 continue;
464 }
465 puts(" done\n");
466
467 do {
Matthias Fuchs83975d02008-04-21 14:42:06 +0200468 res = au_do_update (i, sz);
stroese0621f6f2004-12-16 18:43:13 +0000469 /* let the user break out of the loop */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200470 if (ctrlc() || had_ctrlc ()) {
471 clear_ctrlc ();
stroese0621f6f2004-12-16 18:43:13 +0000472 break;
473 }
474 cnt++;
475 } while (res < 0);
476 }
477
478 /* restore the old state */
Matthias Fuchs83975d02008-04-21 14:42:06 +0200479 disable_ctrlc (old_ctrlc);
stroese0621f6f2004-12-16 18:43:13 +0000480
481 puts("AutoUpdate finished\n\n");
482#ifdef CONFIG_AUTO_UPDATE_SHOW
Matthias Fuchs83975d02008-04-21 14:42:06 +0200483 board_auto_update_show (0);
stroese0621f6f2004-12-16 18:43:13 +0000484#endif
485
486 return 0;
487}
488
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200489int auto_update(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
stroese0621f6f2004-12-16 18:43:13 +0000490{
491 do_auto_update();
492
493 return 0;
494}
495U_BOOT_CMD(
496 autoupd, 1, 1, auto_update,
Peter Tyser2fb26042009-01-27 18:03:12 -0600497 "Automatically update images",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200498 ""
stroese0621f6f2004-12-16 18:43:13 +0000499);
500#endif /* CONFIG_AUTO_UPDATE */