diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2004-06-03 14:34:31 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2004-06-03 14:34:31 +0000 |
commit | 65046b16f90bea203ba5b8315c895b34d92bc3ac (patch) | |
tree | e6e08ed1e0d1f898b4b16674e691628a3a972d33 | |
parent | 515f6b68a0dad6d3105966d57de05274b3341de7 (diff) |
remove brain-dead verify code
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1590 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | util/newconfig/config.g | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index c5b13ca622..ef3a51e13e 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -2001,10 +2001,6 @@ def verifyparse(): for op in image.exported_options: if (getoptionvalue(op.name, op, image) == 0 and getoptionvalue(op.name, op, 0) == 0): error("Exported option %s has no value (check Options.lb)" % op.name) - print("Verifing global options") - for op in global_exported_options: - if (getoptionvalue(op.name, op, 0) == 0): - error("Exported option %s has no value (check Options.lb)" % op.name) exitiferrors() #============================================================================= |