diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-05-02 12:05:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-05-02 12:05:13 +0000 |
commit | ead73689db79fecc3e17215d100ab52ce4377657 (patch) | |
tree | f3decd3d843e222394b848805f0f88f74d153700 /util/newconfig/config.g | |
parent | d3ba4aaa245b1af50f70443ba01ec0baf883995f (diff) |
add automatic payload compression method to LinuxBIOS
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2288 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig/config.g')
-rw-r--r-- | util/newconfig/config.g | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index bc3ff6b3dd..fbd3dcc6ac 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -182,7 +182,7 @@ def warning(string): def notice(string): """Print notice message""" - print "===> NOTE: %s" % string + #print "===> NOTE: %s" % string def exitiferrors(): """Exit parser if an error has been encountered""" @@ -1024,7 +1024,8 @@ def getoptionvalue(name, op, image): global global_option_values #print "getoptionvalue name %s op %s image %s\n" % (name, op,image) if (op == 0): - print_stack() + # we want to debug config files, not the config tool, so no: + # print_stack() fatal("Option %s undefined (missing use command?)" % name) if (image): v = getdict(image.getvalues(), name) |