summaryrefslogtreecommitdiffstats
path: root/pbl/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-12-08 10:28:59 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-12-09 12:59:19 +0100
commitf2847088be8f94caa19d6f4a8f5d5a2d6487568c (patch)
tree1c965dea7aa8d15b9b57af64d439471656fb743a /pbl/Makefile
parent5d876958860201175e6fb684c3e01b6a82410b03 (diff)
downloadbarebox-f2847088be8f94caa19d6f4a8f5d5a2d6487568c.tar.gz
barebox-f2847088be8f94caa19d6f4a8f5d5a2d6487568c.tar.xz
Add PBL console support
This adds simple console support to the PBL which makes it possible to print more complex messages in the PBL than just strings or hex numbers. For now puts_ll is used to print the messages, so it depends on CONFIG_DEBUG_LL which makes it more a debugging option. However, this could be extended later to get regular output from the PBL if desired. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'pbl/Makefile')
-rw-r--r--pbl/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/pbl/Makefile b/pbl/Makefile
index a2d7468687..c5a08c1354 100644
--- a/pbl/Makefile
+++ b/pbl/Makefile
@@ -4,3 +4,4 @@
pbl-y += misc.o
pbl-y += string.o
pbl-y += decomp.o
+pbl-$(CONFIG_PBL_CONSOLE) += console.o