From 669ab2141b40b27cc8b5487c091d2cbb81b7757a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Wed, 15 Oct 2008 21:24:32 +0000 Subject: [PATCH] * The "info" KDL command now also dumps the built-in SVN revision. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@28153 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/system_info.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/system/kernel/system_info.cpp b/src/system/kernel/system_info.cpp index 1dbb86f3a2..ff39b36596 100644 --- a/src/system/kernel/system_info.cpp +++ b/src/system/kernel/system_info.cpp @@ -43,7 +43,9 @@ static uint32 sHaikuRevision __attribute__((section("_haiku_revision"))); static int dump_info(int argc, char **argv) { - kprintf("kernel build: %s %s\n\n", __DATE__, __TIME__); + kprintf("kernel build: %s %s\n", __DATE__, __TIME__); + kprintf("SVN revision: %lu\n\n", sHaikuRevision); + kprintf("cpu count: %ld, active times:\n", smp_get_num_cpus()); for (int32 i = 0; i < smp_get_num_cpus(); i++)