makeversion: obsolete
authorAlan Cox <alan@linux.intel.com>
Thu, 1 Sep 2016 21:45:54 +0000 (22:45 +0100)
committerAlan Cox <alan@linux.intel.com>
Thu, 1 Sep 2016 21:45:54 +0000 (22:45 +0100)
Kernel/makeversion [deleted file]

diff --git a/Kernel/makeversion b/Kernel/makeversion
deleted file mode 100755 (executable)
index ca4a24d..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-cat <<EOF > version.c
-#include "kernel.h"
-#include "version.h"
-
-/* Format is version/sysname/release/system */
-/* pack version first so we can use uname_str as a printf target */
-struct sysinfoblk sysinfo = {
-       sizeof(struct sysinfoblk),
-       CONFIG_BANKS,
-       UFTSIZE,
-       PTABSIZE,
-       TICKSPERSEC,
-       0,
-       0,
-#ifdef CONFIG_PROFIL
-       CONF_PROFIL |
-#endif
-#ifdef CONFIG_LEVEL_2
-       CONF_LEVEL_2 |
-#endif
-       0
-};
-/* Must follow immediately afterwards */
-/* Quoting to work around cc65 bug */
-/* Must not be const .. or gets packed elsewhere not after sysinfo */
-char uname_str[] = "$1\0""Fuzix\0""$2\0""$3";
-EOF
-X=$(echo "$1XFuzix$2X$3X"|wc -c)
-echo "const uint8_t uname_len = "$X";" >>version.c
-
-