This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fconfig output string typographical error


This patch fixes a typographical error in a RedBoot output string. Checked 
in.

John Dallaway
eCosCentric Limited
Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/redboot/current/ChangeLog,v
retrieving revision 1.165
diff -u -5 -r1.165 ChangeLog
--- ChangeLog	24 Nov 2003 21:12:07 -0000	1.165
+++ ChangeLog	25 Nov 2003 11:48:59 -0000
@@ -1,5 +1,10 @@
+2003-11-25  John Dallaway  <jld@ecoscentric.com>
+
+	* src/fconfig.c (load_flash_config):
+	Fix typo in output string.
+
 2003-11-24  Gary Thomas  <gary@mlbassoc.com>
 
 	* src/net/bootp.c (__bootp_find_local_ip): 
 	Suppress diagnostic message that DNS info found.
 
Index: src/fconfig.c
===================================================================
RCS file: /cvs/ecos/ecos/packages/redboot/current/src/fconfig.c,v
retrieving revision 1.6
diff -u -5 -r1.6 fconfig.c
--- src/fconfig.c	15 Oct 2003 15:52:03 -0000	1.6
+++ src/fconfig.c	25 Nov 2003 11:49:01 -0000
@@ -1003,11 +1003,11 @@
 #endif
     if ((cyg_crc32((unsigned char *)config, 
                    sizeof(struct _config)-sizeof(config->cksum)) != config->cksum) ||
         (config->key1 != CONFIG_KEY1)|| (config->key2 != CONFIG_KEY2)) {
         diag_printf("**Warning** FLASH configuration checksum error or invalid key\n");
-        diag_printf("Use 'fconfig -i' to [re]intialize database\n");
+        diag_printf("Use 'fconfig -i' to [re]initialize database\n");
         config_init();
         return;
     }
     config_ok = true;
     flash_get_config("boot_script", &use_boot_script, CONFIG_BOOL);

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]