summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2008-10-11 13:13:44 +0000
committerDave Chapman <dave@dchapman.com>2008-10-11 13:13:44 +0000
commit4f8027470844990e591aeda5a7a2251ef955a440 (patch)
treec380c17f6a9c6c1ee2cd5d0043eed2959d413718
parent3c65d2b17f3f76e22629d1e78c2897d2840ad67f (diff)
downloadrockbox-4f8027470844990e591aeda5a7a2251ef955a440.tar.gz
rockbox-4f8027470844990e591aeda5a7a2251ef955a440.zip
Add Rafael Carre to the (C) message in the output of mkamsboot. This should be the last commit for a while...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18772 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/mkamsboot/mkamsboot.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/rbutil/mkamsboot/mkamsboot.c b/rbutil/mkamsboot/mkamsboot.c
index fa975f8fc7..0dac0e2c72 100644
--- a/rbutil/mkamsboot/mkamsboot.c
+++ b/rbutil/mkamsboot/mkamsboot.c
@@ -5,7 +5,7 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id:$ 8 * $Id$
9 * 9 *
10 * mkamsboot.c - a tool for merging bootloader code into an Sansa V2 10 * mkamsboot.c - a tool for merging bootloader code into an Sansa V2
11 * (AMS) firmware file 11 * (AMS) firmware file
@@ -141,12 +141,6 @@ static const int bootloader_sizes[] =
141}; 141};
142 142
143 143
144/* This magic should appear at the start of any UCL file */
145static const unsigned char uclmagic[] = {
146 0x00, 0xe9, 0x55, 0x43, 0x4c, 0xff, 0x01, 0x1a
147};
148
149
150static off_t filesize(int fd) { 144static off_t filesize(int fd) {
151 struct stat buf; 145 struct stat buf;
152 146
@@ -292,7 +286,7 @@ int main(int argc, char* argv[])
292 int totalsize; 286 int totalsize;
293 unsigned char* p; 287 unsigned char* p;
294 288
295 fprintf(stderr,"mkamsboot v" VERSION " - (C) Dave Chapman 2008\n"); 289 fprintf(stderr,"mkamsboot v" VERSION " - (C) Dave Chapman and Rafaël Carré 2008\n");
296 fprintf(stderr,"This is free software; see the source for copying conditions. There is NO\n"); 290 fprintf(stderr,"This is free software; see the source for copying conditions. There is NO\n");
297 fprintf(stderr,"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"); 291 fprintf(stderr,"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n");
298 292