blob: dacfd9ffab043aeac74ad6ef2388964bae2dbc8c (
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
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
*
* Copyright (C) 2014 by Marcin Bukat
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include <getopt.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include "rkw.h"
#define VERSION "v0.1"
static void banner(void)
{
printf("RKWtool " VERSION " (C) Marcin Bukat 2014\n");
printf("This is free software; see the source for copying conditions. There is NO\n");
printf("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
}
static void usage(char *name)
{
banner();
printf("Usage: %s [-i] [-b] [-e] [-a] [-o prefix] file.rkw\n", name);
printf("-i\t\tprint info about RKW file\n");
printf("-b\t\textract nand bootloader images (s1.bin and s2.bin)\n");
printf("-e\t\textract firmware files stored in RKST section\n");
printf("-o prefix\twhen extracting firmware files put it there\n");
printf("-a\t\textract additional file(s) (usually Rock27Boot.bin)\n");
printf("-A\t\textract all data\n");
printf("file.rkw\tRKW file to be processed\n");
}
int main(int argc, char **argv)
{
int opt;
struct rkw_info_t *rkw_info = NULL;
char *prefix = NULL;
bool info = false;
bool extract = false;
bool bootloader = false;
bool addfile = false;
while ((opt = getopt(argc, argv, "iebo:aA")) != -1)
{
switch (opt)
{
case 'i':
info = true;
break;
case 'e':
extract = true;
break;
case 'b':
bootloader = true;
break;
case 'o':
prefix = optarg;
break;
case 'a':
addfile = true;
break;
case 'A':
extract = true;
bootloader = true;
addfile = true;
break;
default:
usage(argv[0]);
break;
}
}
if ((argc - optind) != 1 ||
(!info && !extract && ! bootloader && !addfile))
{
usage(argv[0]);
return -1;
}
banner();
rkw_info = rkw_slurp(argv[optind]);
if (rkw_info)
{
if (info)
{
rkrs_list_named_items(rkw_info);
rkst_list_named_items(rkw_info);
}
if (extract)
unpack_rkst(rkw_info, prefix);
if (bootloader)
unpack_bootloader(rkw_info, prefix);
if (addfile)
unpack_addfile(rkw_info, prefix);
rkw_free(rkw_info);
return 0;
}
return -1;
}
|