summaryrefslogtreecommitdiffstats
path: root/common/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-08-01 11:47:10 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-08-01 11:47:10 +0200
commitaca52174a9c43aabdf5b5874c7902181a047f61a (patch)
tree9d17e41af46cddcaeff59e42dbe3f22b1248cccc /common/Makefile
parentc10e20846ddbd0f6f062fb5faa66a9570fbcedc7 (diff)
downloadbarebox-aca52174a9c43aabdf5b5874c7902181a047f61a.tar.gz
barebox-aca52174a9c43aabdf5b5874c7902181a047f61a.tar.xz
console: add a simple console for saving space
Add a simple console layer which is not able to handle multiple consoles for those who don't need it. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/Makefile')
-rw-r--r--common/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/Makefile b/common/Makefile
index c5b47ea74d..f0555a628e 100644
--- a/common/Makefile
+++ b/common/Makefile
@@ -10,7 +10,8 @@ obj-$(CONFIG_AUTO_COMPLETE) += complete.o
obj-y += dlmalloc.o
obj-y += clock.o
obj-y += command.o
-obj-y += console.o
+obj-$(CONFIG_CONSOLE_FULL) += console.o
+obj-$(CONFIG_CONSOLE_SIMPLE) += console_simple.o
obj-$(CONFIG_PARTITION) += partition.o
obj-y += env.o
obj-y += startup.o