* 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
This commit is contained in:
Axel Dörfler 2008-10-15 21:24:32 +00:00
parent 404bf9d1ab
commit 669ab2141b
1 changed files with 3 additions and 1 deletions

View File

@ -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++)