]> www.infradead.org Git - mtd-utils.git/commitdiff
[MTD] UBI Utils: Tools should have individual version numbers
authorFrank Haverkamp <haver@vnet.ibm.com>
Mon, 11 Dec 2006 13:34:23 +0000 (14:34 +0100)
committerFrank Haverkamp <haver@vnet.ibm.com>
Mon, 11 Dec 2006 13:34:23 +0000 (14:34 +0100)
The tools had a mixture of different version numbers. This is changed now.
The internal change to move to remove glibc dependencies should be reflected
by an increase of the version number, so that we can react if trouble is
seen with the new code.

Singed-off-by: Frank Haverkamp <haver@vnet.ibm.com>
13 files changed:
ubi-utils/src/bin2nand.c
ubi-utils/src/config.h
ubi-utils/src/mkbootenv.c
ubi-utils/src/nand2bin.c
ubi-utils/src/pddcustomize.c
ubi-utils/src/pfi2bin.c
ubi-utils/src/pfiflash.c
ubi-utils/src/ubigen.c
ubi-utils/src/ubimirror.c
ubi-utils/src/ubimkvol.c
ubi-utils/src/ubirmvol.c
ubi-utils/src/ubiupdatevol.c
ubi-utils/src/unubi.c

index df838af4e0d2cf0fa4e06a425e64fd6fe0af723e..4bab1adea2d360a29ab8280129cab8d5a88cf926 100644 (file)
  * Create a flashable NAND image from a binary image
  *
  * History:
- *     1.0:    Initial release (tglx)
- *     1.1:    Understands hex and dec input parameters (tglx)
- *     1.2:    Generates separated OOB data, if needed. (oloh)
- *     1.3:    Padds data/oob to a given size. (oloh)
+ * 1.0 Initial release (tglx)
+ * 1.1 Understands hex and dec input parameters (tglx)
+ * 1.2 Generates separated OOB data, if needed. (oloh)
+ * 1.3 Padds data/oob to a given size. (oloh)
+ * 1.4 Removed argp because we want to use uClibc.
  */
 
 #include <unistd.h>
@@ -44,6 +45,8 @@
 #include "config.h"
 #include "nandecc.h"
 
+#define PROGRAM_VERSION "1.4"
+
 #define CHECK_ENDP(option, endp) do {                  \
        if (*endp) {                                    \
                fprintf(stderr,                         \
@@ -65,7 +68,7 @@ typedef enum action_t {
 extern char *optarg;
 extern int optind;
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\tBuilt on "
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\tBuilt on "
        BUILD_CPU" "BUILD_OS" at "__DATE__" "__TIME__"\n"
        "\n"
        "bin2nand - a tool for adding OOB information to a "
@@ -153,11 +156,13 @@ parse_opt(int argc, char **argv, myargs *args)
 
                switch (key) {
                        case 'p': /* pagesize */
-                               args->pagesize = (size_t) ustrtoull(optarg, &endp, 0);
+                               args->pagesize = (size_t)
+                                       ustrtoull(optarg, &endp, 0);
                                CHECK_ENDP("p", endp);
                                break;
                        case 'j': /* padding */
-                               args->padding = (size_t) ustrtoull(optarg, &endp, 0);
+                               args->padding = (size_t)
+                                       ustrtoull(optarg, &endp, 0);
                                CHECK_ENDP("j", endp);
                                break;
                        case 'o': /* output */
@@ -172,7 +177,7 @@ parse_opt(int argc, char **argv, myargs *args)
                                exit(0);
                                break;
                        case 'V':
-                               printf("%s\n", PACKAGE_VERSION);
+                               printf("%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
                        case 'c':
@@ -187,7 +192,8 @@ parse_opt(int argc, char **argv, myargs *args)
        if (optind < argc) {
                args->fp_in = fopen(argv[optind++], "rb");
                if ((args->fp_in) == NULL) {
-                       err_quit("Cannot open file %s for input\n", argv[optind++]);
+                       err_quit("Cannot open file %s for input\n",
+                                argv[optind++]);
                }
        }
 
index b5bbd5bd2c739e5c30483f3a5bac339d1d1a1f30..8c4dd54f7008f79af98b12672e04f3832fadc0c5 100644 (file)
@@ -20,8 +20,8 @@
  * Author: Frank Haverkamp
  */
 
-#define PACKAGE_VERSION     "1.1"
-#define PACKAGE_BUGREPORT   "haver@vnet.ibm.com, dedekind@linutronix.de, or tglx@linutronix.de"
+#define PACKAGE_BUGREPORT                                              \
+       "haver@vnet.ibm.com, dedekind@linutronix.de, or tglx@linutronix.de"
 
 #define __unused __attribute__((unused))
 
index a556939e6a14afd37d5e141170b83641b2143092..c05f4e2d5c16406036b2c365316ef7c531cf35af 100644 (file)
@@ -18,6 +18,8 @@
  * Author: Oliver Lohmann
  *
  * Create boot-parameter/pdd data from an ASCII-text input file.
+ *
+ * 1.2 Removed argp because we want to use uClibc.
  */
 
 #include <stdio.h>
 #include "bootenv.h"
 #include "error.h"
 
+#define PROGRAM_VERSION "1.2"
+
 extern char *optarg;
 extern int optind;
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\tBuilt on "
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\tBuilt on "
        BUILD_CPU" "BUILD_OS" at "__DATE__" "__TIME__"\n"
        "\n"
        "mkbootenv - processes bootenv text files and convertes "
@@ -91,19 +95,20 @@ parse_opt(int argc, char **argv, myargs *args)
                        case 'o':
                                args->fp_out = fopen(optarg, "wb");
                                if ((args->fp_out) == NULL) {
-                                       fprintf(stderr,
-                                                       "Cannot open file %s for output\n", optarg);
+                                       fprintf(stderr, "Cannot open file %s "
+                                               "for output\n", optarg);
                                        exit(1);
                                }
                                break;
                        case '?': /* help */
                                printf("%s", doc);
                                printf("%s", optionsstr);
-                               printf("\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               printf("\nReport bugs to %s\n",
+                                      PACKAGE_BUGREPORT);
                                exit(0);
                                break;
                        case 'V':
-                               printf("%s\n", PACKAGE_VERSION);
+                               printf("%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
                        default:
@@ -115,8 +120,8 @@ parse_opt(int argc, char **argv, myargs *args)
        if (optind < argc) {
                args->fp_in = fopen(argv[optind++], "rb");
                if ((args->fp_in) == NULL) {
-                       fprintf(stderr,
-                                       "Cannot open file %s for input\n", argv[optind]);
+                       fprintf(stderr, "Cannot open file %s for input\n",
+                               argv[optind]);
                        exit(1);
                }
        }
index a9b68bdce546ef3dc30295d5a09526a2bc3fa679..34cce40a5f2ec7894d2b87e48a59ef5946017b64 100644 (file)
  * Author: Frank Haverkamp
  *
  * An utility to decompose NAND images and strip OOB off. Not yet finished ...
+ *
+ * 1.2 Removed argp because we want to use uClibc.
  */
+
 #include <config.h>
 #include <errno.h>
 #include <fcntl.h>
@@ -36,6 +39,8 @@
 #include "config.h"
 #include "nandecc.h"
 
+#define PROGRAM_VERSION "1.2"
+
 #define MAXPATH                1024
 #define MIN(x,y)       ((x)<(y)?(x):(y))
 
@@ -60,7 +65,7 @@ static struct args myargs = {
        .options = NULL,
 };
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\t"
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\t"
        BUILD_OS" "BUILD_CPU" at "__DATE__" "__TIME__"\n"
        "\nSplit data and OOB.\n";
 
@@ -147,12 +152,13 @@ parse_opt(int argc, char **argv, struct args *args)
                                printf("Usage: nand2bin [OPTION...] input.mif\n");
                                printf("%s", doc);
                                printf("%s", optionsstr);
-                               printf("\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               printf("\nReport bugs to %s\n",
+                                      PACKAGE_BUGREPORT);
                                exit(0);
                                break;
 
                        case 'V':
-                               printf("%s\n", PACKAGE_VERSION);
+                               printf("%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
 
index 5d1864a9b15e2e29182a54c15ae0097ab73757f9..5c2a5f0dcf865a21a1c1c662ff34edea9c787032 100644 (file)
@@ -23,6 +23,8 @@
  * if the system is updated and one must be able to modify them when
  * the system has booted the first time. This tool is intended to do
  * PDD modification.
+ *
+ * 1.3 Removed argp because we want to use uClibc.
  */
 
 #include <stdio.h>
@@ -41,6 +43,8 @@
 #include "libubi.h"
 #include "ubimirror.h"
 
+#define PROGRAM_VERSION "1.3"
+
 typedef enum action_t {
        ACT_NORMAL   = 0,
        ACT_LIST,
@@ -59,7 +63,7 @@ typedef enum action_t {
 extern char *optarg;
 extern int optind;
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\tBuilt on "
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\tBuilt on "
        BUILD_CPU" "BUILD_OS" at "__DATE__" "__TIME__"\n"
        "\n"
        "pddcustomize - customize bootenv and pdd values.\n";
@@ -160,7 +164,8 @@ parse_opt(int argc, char **argv, myargs *args)
        while (1) {
                int key;
 
-               key = getopt_long(argc, argv, "clbxs:i:o:?V", long_options, NULL);
+               key = getopt_long(argc, argv, "clbxs:i:o:?V",
+                                 long_options, NULL);
                if (key == -1)
                        break;
 
@@ -182,8 +187,9 @@ parse_opt(int argc, char **argv, myargs *args)
                                args->side = get_update_side(optarg);
                                if (args->side < 0) {
                                        err_msg("Unsupported seqnum: %d.\n"
-                                                       "Supported seqnums are '0' and '1'\n",
-                                                       args->side, optarg);
+                                               "Supported seqnums are "
+                                               "'0' and '1'\n",
+                                               args->side, optarg);
                                        ERR_ARGP;
                                }
                                break;
@@ -194,14 +200,16 @@ parse_opt(int argc, char **argv, myargs *args)
                                args->file_out = optarg;
                                break;
                        case '?': /* help */
-                               err_msg("Usage: pddcustomize.orig [OPTION...] [key=value] [...]");
+                               err_msg("Usage: pddcustomize.orig [OPTION...] "
+                                       "[key=value] [...]");
                                err_msg("%s", doc);
                                err_msg("%s", optionsstr);
-                               err_msg("\nReport bugs to %s", PACKAGE_BUGREPORT);
+                               err_msg("\nReport bugs to %s",
+                                       PACKAGE_BUGREPORT);
                                exit(0);
                                break;
                        case 'V':
-                               err_msg("%s", PACKAGE_VERSION);
+                               err_msg("%s", PROGRAM_VERSION);
                                exit(0);
                                break;
                        default:
index 044fa24cb12f1486446360c4e47c685766027be3..9265fd5f95f21f7846fbb422eb008f1c2e8e1068 100644 (file)
@@ -22,6 +22,8 @@
  * chips in a manufacturing step where the flashes are written before
  * being soldered onto the hardware. For NAND images another step is
  * required to add the right OOB data to the binary image.
+ *
+ * 1.3 Removed argp because we want to use uClibc.
  */
 
 #include <stdlib.h>
@@ -42,7 +44,7 @@
 #include "peb.h"
 #include "crc32.h"
 
-#define PROGRAM_VERSION "1.2"
+#define PROGRAM_VERSION "1.3"
 
 #define MAX_FNAME 255
 #define DEFAULT_ERASE_COUNT  0 /* Hmmm.... Perhaps */
@@ -157,12 +159,13 @@ parse_opt(int argc, char **argv, myargs *args)
                                printf("pfi2bin [OPTION...] pfifile\n");
                                printf("%s", doc);
                                printf("%s", optionsstr);
-                               printf("\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               printf("\nReport bugs to %s\n",
+                                      PACKAGE_BUGREPORT);
                                exit(0);
                                break;
 
                        case 'V':
-                               printf("%s\n", PACKAGE_VERSION);
+                               printf("%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
 
index 259a647449f81703058005392ee0c744faf67652..63487b9704e13b89ac7129e959173a99297af398 100644 (file)
@@ -193,7 +193,7 @@ parse_opt(int argc, char **argv, myargs *args)
                                exit(0);
                                break;
                        case 'V':
-                               err_msg("%s", PACKAGE_VERSION);
+                               err_msg("%s", PROGRAM_VERSION);
                                exit(0);
                                break;
                        default:
index 226834f08b122840cb1ce352dfcd0685397fa267..877f46967a33f4781a279ec2b34d8ffc287ef709 100644 (file)
@@ -21,6 +21,7 @@
  *
  * 1.0 Initial version
  * 1.1 Different CRC32 start value
+ * 1.2 Removed argp because we want to use uClibc.
  */
 
 #include <stdlib.h>
@@ -34,6 +35,8 @@
 #include "ubigen.h"
 #include "config.h"
 
+#define PROGRAM_VERSION "1.2"
+
 typedef enum action_t {
        ACT_NORMAL           = 0x00000001,
        ACT_BROKEN_UPDATE    = 0x00000002,
@@ -42,7 +45,7 @@ typedef enum action_t {
 extern char *optarg;
 extern int optind;
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\tBuilt on "
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\tBuilt on "
        BUILD_CPU" "BUILD_OS" at "__DATE__" "__TIME__"\n"
        "\n"
        "ubigen - a tool for adding UBI information to a binary input file.\n";
@@ -187,16 +190,16 @@ parse_opt(int argc, char **argv, myargs *args)
                        case 'o': /* output */
                                args->fp_out = fopen(optarg, "wb");
                                if ((args->fp_out) == NULL) {
-                                       fprintf(stderr, "Cannot open file %s for output\n",
-                                                       optarg);
+                                       fprintf(stderr, "Cannot open file %s "
+                                               "for output\n", optarg);
                                        exit(1);
                                }
                                break;
                        case 'i': /* input */
                                args->fp_in = fopen(optarg, "rb");
                                if ((args->fp_in) == NULL) {
-                                       fprintf(stderr, "Cannot open file %s for input\n",
-                                                       optarg);
+                                       fprintf(stderr, "Cannot open file %s "
+                                               "for input\n", optarg);
                                        exit(1);
                                }
                                break;
@@ -205,23 +208,26 @@ parse_opt(int argc, char **argv, myargs *args)
                                break;
 
                        case 'B': /* eb_size */
-                               args->eb_size = (uint32_t) ustrtoul(optarg, &endp, 0);
+                               args->eb_size =
+                                       (uint32_t)ustrtoul(optarg, &endp, 0);
                                CHECK_ENDP("B", endp);
                                break;
                        case 'E': /* erasecount */
-                               args->ec = (uint64_t) strtoul(optarg, &endp, 0);
+                               args->ec = (uint64_t)strtoul(optarg, &endp, 0);
                                CHECK_ENDP("E", endp);
                                break;
                        case 'I': /* id */
-                               args->id = (uint16_t) strtoul(optarg, &endp, 0);
+                               args->id = (uint16_t)strtoul(optarg, &endp, 0);
                                CHECK_ENDP("I", endp);
                                break;
                        case 'T': /* type */
-                               args->type =  (uint16_t) strtoul(optarg, &endp, 0);
+                               args->type =
+                                       (uint16_t)strtoul(optarg, &endp, 0);
                                CHECK_ENDP("T", endp);
                                break;
                        case 'X': /* versionnr */
-                               args->version =  (uint8_t) strtoul(optarg, &endp, 0);
+                               args->version =
+                                       (uint8_t)strtoul(optarg, &endp, 0);
                                CHECK_ENDP("X", endp);
                                break;
                        case 'O': /* offset for volume hdr */
@@ -241,12 +247,13 @@ parse_opt(int argc, char **argv, myargs *args)
                                fprintf(stderr, "Usage: ubigen [OPTION...]\n");
                                fprintf(stderr, "%s", doc);
                                fprintf(stderr, "%s", optionsstr);
-                               fprintf(stderr, "\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               fprintf(stderr, "\nReport bugs to %s\n",
+                                       PACKAGE_BUGREPORT);
                                exit(0);
                                break;
 
                        case 'V':
-                               fprintf(stderr, "%s\n", PACKAGE_VERSION);
+                               fprintf(stderr, "%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
 
@@ -260,8 +267,8 @@ parse_opt(int argc, char **argv, myargs *args)
                if (!args->fp_in) {
                        args->fp_in = fopen(argv[optind++], "rb");
                        if ((args->fp_in) == NULL) {
-                               fprintf(stderr,
-                                               "Cannot open file %s for input\n", argv[optind]);
+                               fprintf(stderr, "Cannot open file %s for "
+                                       "input\n", argv[optind]);
                                exit(1);
                        }
                }
index 1b1d0be94ab78a12b2279f52d340dceac5595cbd..533a0eef9c677ccdfe43b1f1ff9dae319783b6f8 100644 (file)
@@ -16,6 +16,8 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
  * Author: Oliver Lohmann
+ *
+ * 1.2 Removed argp because we want to use uClibc.
  */
 
 #include <stdio.h>
@@ -32,6 +34,8 @@
 #include "example_ubi.h"
 #include "ubimirror.h"
 
+#define PROGRAM_VERSION "1.2"
+
 typedef enum action_t {
        ACT_NORMAL = 0,
        ACT_ARGP_ABORT,
@@ -51,7 +55,7 @@ typedef enum action_t {
 extern char *optarg;
 extern int optind;
 
-static char doc[] = "\nVersion: " PACKAGE_VERSION "\n\tBuilt on "
+static char doc[] = "\nVersion: " PROGRAM_VERSION "\n\tBuilt on "
        BUILD_CPU" "BUILD_OS" at "__DATE__" "__TIME__"\n"
        "\n"
        "ubimirror - mirrors ubi volumes.\n";
@@ -122,19 +126,22 @@ parse_opt(int argc, char **argv, myargs *args)
                                args->side = get_update_side(optarg);
                                if (args->side < 0) {
                                        err_msg("Unsupported seqnum: %s.\n"
-                                                       "Supported seqnums are '0' and '1'\n", optarg);
+                                               "Supported seqnums are '0' "
+                                               "and '1'\n", optarg);
                                        ERR_ARGP;
                                }
                                break;
                        case '?': /* help */
-                               err_msg("Usage: ubimirror [OPTION...] <source> <destination>\n");
+                               err_msg("Usage: ubimirror [OPTION...] "
+                                       "<source> <destination>\n");
                                err_msg("%s", doc);
                                err_msg("%s", optionsstr);
-                               err_msg("\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               err_msg("\nReport bugs to %s\n",
+                                       PACKAGE_BUGREPORT);
                                exit(0);
                                break;
                        case 'V':
-                               err_msg("%s", PACKAGE_VERSION);
+                               err_msg("%s", PROGRAM_VERSION);
                                exit(0);
                                break;
                        default:
index 7d510ebc6d8949f477e7c288d0690e620933aa83..e878d70c4c5025820eb836893d45639a74268e19 100644 (file)
@@ -26,6 +26,7 @@
  * 1.1 Does not support erase blocks anymore. This is replaced by
  *     the number of bytes.
  * 1.2 Reworked the user-interface to use argp.
+ * 1.3 Removed argp because we want to use uClibc.
  */
 
 #include <stdio.h>
@@ -38,7 +39,7 @@
 #include <config.h>
 #include <libubi.h>
 
-#define PROGRAM_VERSION "1.2"
+#define PROGRAM_VERSION "1.3"
 
 extern char *optarg;
 extern int optind;
@@ -179,10 +180,12 @@ parse_opt(int argc, char **argv, struct args *args)
                                break;
                        case 'n': /* --volid=<volume id> */
                                args->vol_id = strtoul(optarg, &endp, 0);
-                               if (*endp != '\0' || endp == optarg ||
-                                               (args->vol_id < 0 && args->vol_id != UBI_DYNAMIC_VOLUME)) {
+                               if (*endp != '\0' ||
+                                   endp == optarg ||
+                                   (args->vol_id < 0 &&
+                                    args->vol_id != UBI_DYNAMIC_VOLUME)) {
                                        fprintf(stderr, "Bad volume ID: "
-                                                       "\"%s\"\n", optarg);
+                                               "\"%s\"\n", optarg);
                                        goto out;
                                }
                                break;
@@ -199,12 +202,13 @@ parse_opt(int argc, char **argv, struct args *args)
                                fprintf(stderr, "Usage: ubimkvol [OPTION...]\n");
                                fprintf(stderr, "%s", doc);
                                fprintf(stderr, "%s", optionsstr);
-                               fprintf(stderr, "\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               fprintf(stderr, "\nReport bugs to %s\n",
+                                       PACKAGE_BUGREPORT);
                                exit(0);
                                break;
 
                        case 'V':
-                               fprintf(stderr, "%s\n", PACKAGE_VERSION);
+                               fprintf(stderr, "%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
 
index 69e4d0e598ba21bf732380e6eff06fc115831f45..04ec08540d1f641e434890e3602cb188ee8ccd51 100644 (file)
@@ -23,6 +23,7 @@
  *         Frank Haverkamp <haver@vnet.ibm.com>
  *
  * 1.1 Reworked the userinterface to use argp.
+ * 1.2 Removed argp because we want to use uClibc.
  */
 
 #include <stdio.h>
@@ -35,7 +36,7 @@
 #include <config.h>
 #include <libubi.h>
 
-#define PROGRAM_VERSION "1.1"
+#define PROGRAM_VERSION "1.2"
 
 extern char *optarg;
 extern int optind;
@@ -123,7 +124,8 @@ parse_opt(int argc, char **argv, struct args *args)
                        case 'n': /* --volid=<volume id> */
                                args->vol_id = strtoul(optarg, &endp, 0);
                                if (*endp != '\0' || endp == optarg ||
-                                               (args->vol_id < 0 && args->vol_id != UBI_DYNAMIC_VOLUME)) {
+                                   (args->vol_id < 0 &&
+                                    args->vol_id != UBI_DYNAMIC_VOLUME)) {
                                        fprintf(stderr, "Bad volume ID: "
                                                        "\"%s\"\n", optarg);
                                        goto out;
@@ -136,11 +138,12 @@ parse_opt(int argc, char **argv, struct args *args)
                                fprintf(stderr, "Usage: ubirmvol [OPTION...]\n");
                                fprintf(stderr, "%s", doc);
                                fprintf(stderr, "%s", optionsstr);
-                               fprintf(stderr, "\nReport bugs to %s\n", PACKAGE_BUGREPORT);
+                               fprintf(stderr, "\nReport bugs to %s\n",
+                                       PACKAGE_BUGREPORT);
                                exit(0);
                                break;
                        case 'V':
-                               fprintf(stderr, "%s\n", PACKAGE_VERSION);
+                               fprintf(stderr, "%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
                        default:
index 753ad6155ab60a924fe368247e7f866adab98aa7..011d5327ad24ab220b5fa85e938f01d9516ee957 100644 (file)
@@ -154,7 +154,7 @@ parse_opt(int argc, char **argv, struct args *args)
                                break;
 
                        case 'V':
-                               fprintf(stderr, "%s\n", PACKAGE_VERSION);
+                               fprintf(stderr, "%s\n", PROGRAM_VERSION);
                                exit(0);
                                break;
 
index f8045d8a7e724bb030dee10992b9bcf20950d93e..0f8945f952a82aa1b0317babe585848f4e4e4c03 100644 (file)
@@ -19,6 +19,8 @@
 /*
  * Authors: Frank Haverkamp, haver@vnet.ibm.com
  *         Drake Dowsett, dowsett@de.ibm.com
+ *
+ * 1.2 Removed argp because we want to use uClibc.
  */
 
 /*
@@ -51,7 +53,7 @@
 
 #define EXEC           "unubi"
 #define CONTACT                "haver@vnet.ibm.com"
-#define VERSION                "0.9"
+#define VERSION                "1.0"
 
 extern char *optarg;
 extern int optind;