diff options
author | Stefan Reinauer <reinauer@google.com> | 2011-01-28 07:47:35 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2011-01-28 07:47:35 +0000 |
commit | 582d369fbdaed82a05a7f494998ab44bdb28c474 (patch) | |
tree | 9607f0debac46ff0ec9e928a0104ce8b55513371 /src/console/post.c | |
parent | c6d2b09f7673a33e75a4f5a38368e9684c2ecc79 (diff) | |
download | coreboot-582d369fbdaed82a05a7f494998ab44bdb28c474.tar.xz |
rename CONFIG_SERIAL_POST to CONFIG_CONSOLE_POST
because that is what it does.
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Acked-by: Patrick Georgi <patrick.georgi@secunet.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6311 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console/post.c')
-rw-r--r-- | src/console/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/post.c b/src/console/post.c index 43d50492f3..49f6311303 100644 --- a/src/console/post.c +++ b/src/console/post.c @@ -27,7 +27,7 @@ void post_code(uint8_t value) { #if !defined(CONFIG_NO_POST) || CONFIG_NO_POST==0 -#if CONFIG_SERIAL_POST==1 +#if CONFIG_CONSOLE_POST==1 print_emerg("POST: 0x"); print_emerg_hex8(value); print_emerg("\n"); |