diff options
Diffstat (limited to 'init/version-timestamp.c')
| -rw-r--r-- | init/version-timestamp.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/init/version-timestamp.c b/init/version-timestamp.c new file mode 100644 index 000000000000..375726e05f69 --- /dev/null +++ b/init/version-timestamp.c @@ -0,0 +1,26 @@ +// SPDX-License-Identifier: GPL-2.0-only + +#include <generated/compile.h> +#include <generated/utsrelease.h> +#include <linux/proc_ns.h> +#include <linux/refcount.h> +#include <linux/uts.h> +#include <linux/utsname.h> + +struct uts_namespace init_uts_ns = { + .ns = NS_COMMON_INIT(init_uts_ns), + .name = { + .sysname = UTS_SYSNAME, + .nodename = UTS_NODENAME, + .release = UTS_RELEASE, + .version = UTS_VERSION, + .machine = UTS_MACHINE, + .domainname = UTS_DOMAINNAME, + }, + .user_ns = &init_user_ns, +}; + +/* FIXED STRINGS! Don't touch! */ +const char linux_banner[] = + "Linux version " UTS_RELEASE " (" LINUX_COMPILE_BY "@" + LINUX_COMPILE_HOST ") (" LINUX_COMPILER ") " UTS_VERSION "\n"; |
