Author: stepan
Date: Wed Mar 24 22:21:33 2010
New Revision: 5284
URL: https://tracker.coreboot.org/trac/coreboot/changeset/5284

Log:
Drop unneeded code that checks for CONFIG_ variables in
build_opt_tbl.

Signed-off-by: Stefan Reinauer <[email protected]>

Acked-by: Myles Watson <[email protected]>

Modified:
   trunk/util/options/build_opt_tbl.c

Modified: trunk/util/options/build_opt_tbl.c
==============================================================================
--- trunk/util/options/build_opt_tbl.c  Wed Mar 24 21:59:43 2010        (r5283)
+++ trunk/util/options/build_opt_tbl.c  Wed Mar 24 22:21:33 2010        (r5284)
@@ -472,25 +472,6 @@
                        fprintf(stderr, "Error - location is to big in 
line\n%s\n", line);
                        exit(1);
                }
-               /* And since we are not ready to be fully general purpose yet.. 
*/
-               if ((cs->range_start/8) != CONFIG_LB_CKS_RANGE_START) {
-                       fprintf(stderr, "Error - Range start((value in file 
#%d), which is  byte #%d)"
-                               "does not match the value of the config 
variable LB_CKS_RANGE_START)(%d) in line\n%s\n", 
-                               cs->range_start, cs->range_start/8, 
CONFIG_LB_CKS_RANGE_START, line);
-                       exit(1);
-               }
-               if ((cs->range_end/8) != CONFIG_LB_CKS_RANGE_END) {
-                       fprintf(stderr, "Error - Range end ((value in file 
#%d), which is  byte #%d)"
-                                       "does not match the value of the config 
variable LB_CKS_RANGE_END (%d) in line\n%s\n", 
-                                       cs->range_end, cs->range_end/8, 
-                                       CONFIG_LB_CKS_RANGE_END, line);
-                       exit(1);
-               }
-               if ((cs->location/8) != CONFIG_LB_CKS_LOC) {
-                       fprintf(stderr, "Error - Location ((value in file #%d), 
which is  byte #%d) does not match LB_CKS_LOC (%d) in line\n%s\n", 
-                               cs->location, cs->location/8, 
CONFIG_LB_CKS_LOC, line);
-                       exit(1);
-               }
 
                cs->tag = LB_TAG_OPTION_CHECKSUM;
                cs->size = sizeof(*cs);

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to