Skip to content

Commit

Permalink
Version string for the new x86 setup code
Browse files Browse the repository at this point in the history
Module which only includes the kernel version string.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
H. Peter Anvin authored and Linus Torvalds committed Jul 12, 2007
1 parent 1543610 commit 0008ea3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions arch/i386/boot/version.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* -*- linux-c -*- ------------------------------------------------------- *
*
* Copyright (C) 1991, 1992 Linus Torvalds
* Copyright 2007 rPath, Inc. - All Rights Reserved
*
* This file is part of the Linux kernel, and is made available under
* the terms of the GNU General Public License version 2.
*
* ----------------------------------------------------------------------- */

/*
* arch/i386/boot/version.c
*
* Kernel version string
*/

#include "boot.h"
#include <linux/utsrelease.h>
#include <linux/compile.h>

const char kernel_version[] =
UTS_RELEASE " (" LINUX_COMPILE_BY "@" LINUX_COMPILE_HOST ") "
UTS_VERSION;

0 comments on commit 0008ea3

Please sign in to comment.