aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/bin2c.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /scripts/bin2c.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'scripts/bin2c.c')
-rw-r--r--scripts/bin2c.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/scripts/bin2c.c b/scripts/bin2c.c
new file mode 100644
index 000000000000..96dd2bcbb407
--- /dev/null
+++ b/scripts/bin2c.c
@@ -0,0 +1,36 @@
1/*
2 * Unloved program to convert a binary on stdin to a C include on stdout
3 *
4 * Jan 1999 Matt Mackall <mpm@selenic.com>
5 *
6 * This software may be used and distributed according to the terms
7 * of the GNU General Public License, incorporated herein by reference.
8 */
9
10#include <stdio.h>
11
12int main(int argc, char *argv[])
13{
14 int ch, total=0;
15
16 if (argc > 1)
17 printf("const char %s[] %s=\n",
18 argv[1], argc > 2 ? argv[2] : "");
19
20 do {
21 printf("\t\"");
22 while ((ch = getchar()) != EOF)
23 {
24 total++;
25 printf("\\x%02x",ch);
26 if (total % 16 == 0)
27 break;
28 }
29 printf("\"\n");
30 } while (ch != EOF);
31
32 if (argc > 1)
33 printf("\t;\n\nconst int %s_size = %d;\n", argv[1], total);
34
35 return 0;
36}