summaryrefslogtreecommitdiffstats
path: root/utils/MTP/beastpatcher/main.c
blob: 315f78b264f289a793c65ce994efd2e1db3a07a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 * $Id$
 *
 * Copyright (c) 2009, Dave Chapman
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 * 
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 * 
 *     * Redistributions in binary form must reproduce the above
 *       copyright notice, this list of conditions and the following
 *       disclaimer in the documentation and/or other materials provided
 *       with the distribution.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

#include <stdio.h>
#include <string.h>
#include "beastpatcher.h"
#include "mtp_common.h"

#if defined(__WIN32__) || defined(_WIN32)
#include <windows.h>
#include "../MTP_DLL/MTP_DLL.h"
#endif

#ifdef WITH_BOOTOBJS
#define VERSION "1.0 with v1 bootloader"
#else
#define VERSION "1.0"
#endif

enum actions {
    NONE,
    INSTALL,
    DUALBOOT,
    SEND,
    HELP
};

static void print_usage(void)
{
    fprintf(stderr,"Usage: beastpatcher [action]\n");
    fprintf(stderr,"\n");
    fprintf(stderr,"Where [action] is one of the following options:\n");
#ifdef WITH_BOOTOBJS
    fprintf(stderr,"  -i,   --install           [bootloader.bin]\n");
    fprintf(stderr,"  -d,   --dual-boot         <nk.bin> [bootloader.bin]\n");
#else
    fprintf(stderr,"  -i,   --install           <bootloader.bin>\n");
    fprintf(stderr,"  -d    --dual-boot         <nk.bin> <bootloader.bin>\n");
#endif
    fprintf(stderr,"  -s,   --send              <nk.bin>\n");
    fprintf(stderr,"  -h,   --help\n");
    fprintf(stderr,"\n");
#ifdef WITH_BOOTOBJS
    fprintf(stderr,"With bootloader file omitted the embedded one will be used.\n");
    fprintf(stderr,"\n");
#endif
}


int main(int argc, char* argv[])
{
    int res = 0;
    char yesno[4];
    int i;
    char* bootloader = NULL;
    char* firmware = NULL;
#ifdef WITH_BOOTOBJS
    enum actions action = INSTALL;
#else
    enum actions action = NONE;
#endif

    fprintf(stderr,"beastpatcher v" VERSION " - (C) 2009 by the Rockbox developers\n");
    fprintf(stderr,"This is free software; see the source for copying conditions.  There is NO\n");
    fprintf(stderr,"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");

    i = 1;
    while(i < argc) {
        if(strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) {
            action = HELP;
        }
        else if(strcmp(argv[i], "-i") == 0 || strcmp(argv[i], "--install") == 0) {
            action = INSTALL;
            if(((i + 1) < argc) && argv[i + 1][0] != '-') {
                bootloader = argv[++i];
            }
#ifndef WITH_BOOTOBJS
            else {
                action = NONE;
            }
#endif
        }
        else if(strcmp(argv[i], "-d") == 0 || strcmp(argv[i], "--dual-boot") == 0) {
            action = DUALBOOT;
            if(((i + 1) < argc) && argv[i + 1][0] != '-') {
                firmware = argv[++i];
#ifndef WITH_BOOTOBJS
                if(((i + 1) < argc) && argv[i + 1][0] != '-') {
                    bootloader = argv[++i];
                }
#endif
            }
            else {
                action = NONE;
            }
        }
        else if(((strcmp(argv[i], "-s") == 0 || strcmp(argv[i], "--send") == 0)
            && (i + 1) < argc)) {
            action = SEND;
            firmware = argv[++i];
        }
        i++;
    }

    if(action == NONE) {
        print_usage();
        res = -1;
    }
    else if(action == HELP) {
        print_usage();
        res = 0;
    }
    else if(action == SEND) {
        res = sendfirm(firmware);
    }
    else if(action == DUALBOOT) {
        res = beastpatcher(bootloader, firmware);
    }
    else if(action == INSTALL) {
        res = beastpatcher(bootloader, NULL);
        /* don't ask for enter if started with command line arguments */
        if(argc == 1) {
            printf("\nPress ENTER to exit beastpatcher: ");
            fgets(yesno,4,stdin);
        }
    }
    return res;
}