ff6b0425e4
The field we thought was representative of the model is not, it has changed in the past for fuzev1 and fuzev2. For example the value 0x23 is found in 2 old fuzev1 OF versions, and in the c200v2 OF The only reliable way to detect the model of a given OF is by using the built-in list of md5sums. Modify mkamsboot and rbutilqt to load the rockbox bootloader first, and then check if the model in the bootloader corresponds to the model of the known md5sum of the given OF. That way we can continue to present the user with a list of known OF versions in case the OF is unknown to mkamsboot Also explicit the dependency of main.c on mkamsboot.h in case the prototypes change Correct the header's description not updated in r21648 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26248 a1c6a512-1295-4272-9138-f99709370657
170 lines
5 KiB
C
170 lines
5 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* mkamsboot - a tool for merging bootloader code into an Sansa V2
|
|
* (AMS) firmware file
|
|
*
|
|
* Copyright (C) 2008 Dave Chapman
|
|
*
|
|
* 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include <ucl/ucl.h>
|
|
|
|
#include "mkamsboot.h"
|
|
|
|
/* Header for ARM code binaries */
|
|
#include "dualboot.h"
|
|
|
|
/* Win32 compatibility */
|
|
#ifndef O_BINARY
|
|
#define O_BINARY 0
|
|
#endif
|
|
|
|
/* standalone executable */
|
|
int main(int argc, char* argv[])
|
|
{
|
|
char *infile, *bootfile, *outfile;
|
|
int fdout;
|
|
off_t len;
|
|
uint32_t n;
|
|
unsigned char* buf;
|
|
int firmware_size;
|
|
int bootloader_size;
|
|
unsigned char* of_packed;
|
|
int of_packedsize;
|
|
unsigned char* rb_packed;
|
|
int rb_packedsize;
|
|
int patchable;
|
|
int totalsize;
|
|
int model;
|
|
char errstr[200];
|
|
struct md5sums sum;
|
|
char md5sum[33]; /* 32 digits + \0 */
|
|
|
|
sum.md5 = md5sum;
|
|
|
|
/* VERSION comes frome the Makefile */
|
|
fprintf(stderr,
|
|
"mkamsboot Version " VERSION "\n"
|
|
"This is free software; see the source for copying conditions. There is NO\n"
|
|
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
|
|
"\n");
|
|
|
|
if(argc != 4) {
|
|
printf("Usage: mkamsboot <firmware file> <boot file> <output file>\n");
|
|
return 1;
|
|
}
|
|
|
|
infile = argv[1];
|
|
bootfile = argv[2];
|
|
outfile = argv[3];
|
|
|
|
/* Load bootloader file */
|
|
rb_packed = load_rockbox_file(bootfile, &model, &bootloader_size,
|
|
&rb_packedsize, errstr, sizeof(errstr));
|
|
if (rb_packed == NULL) {
|
|
fprintf(stderr, "%s", errstr);
|
|
fprintf(stderr, "[ERR] Could not load %s\n", bootfile);
|
|
return 1;
|
|
}
|
|
|
|
/* Load original firmware file */
|
|
buf = load_of_file(infile, model, &len, &sum,
|
|
&firmware_size, &of_packed, &of_packedsize, errstr, sizeof(errstr));
|
|
|
|
if (buf == NULL) {
|
|
free(rb_packed);
|
|
fprintf(stderr, "%s", errstr);
|
|
fprintf(stderr, "[ERR] Could not load %s\n", infile);
|
|
return 1;
|
|
}
|
|
|
|
fprintf(stderr, "[INFO] Original firmware MD5 checksum match\n");
|
|
fprintf(stderr, "[INFO] Model: Sansa %s v%d - Firmware version: %s\n",
|
|
model_names[sum.model], hw_revisions[sum.model], sum.version);
|
|
|
|
|
|
printf("[INFO] Firmware patching has begun !\n\n");
|
|
|
|
fprintf(stderr, "[INFO] Original firmware size: %d bytes\n",
|
|
firmware_size);
|
|
fprintf(stderr, "[INFO] Packed OF size: %d bytes\n",
|
|
of_packedsize);
|
|
fprintf(stderr, "[INFO] Bootloader size: %d bytes\n",
|
|
(int)bootloader_size);
|
|
fprintf(stderr, "[INFO] Packed bootloader size: %d bytes\n",
|
|
rb_packedsize);
|
|
fprintf(stderr, "[INFO] Dual-boot function size: %d bytes\n",
|
|
bootloader_sizes[sum.model]);
|
|
fprintf(stderr, "[INFO] UCL unpack function size: %u bytes\n",
|
|
(unsigned int)sizeof(nrv2e_d8));
|
|
|
|
patchable = check_sizes(sum.model, rb_packedsize, bootloader_size,
|
|
of_packedsize, firmware_size, &totalsize, errstr, sizeof(errstr));
|
|
|
|
fprintf(stderr, "[INFO] Total size of new image: %d bytes\n", totalsize);
|
|
|
|
if (!patchable) {
|
|
fprintf(stderr, "%s", errstr);
|
|
free(buf);
|
|
free(of_packed);
|
|
free(rb_packed);
|
|
return 1;
|
|
}
|
|
|
|
patch_firmware(sum.model, fw_revisions[sum.model], firmware_size, buf, len,
|
|
of_packed, of_packedsize, rb_packed, rb_packedsize);
|
|
|
|
/* Write the new firmware */
|
|
fdout = open(outfile, O_CREAT|O_TRUNC|O_WRONLY|O_BINARY, 0666);
|
|
|
|
if (fdout < 0) {
|
|
fprintf(stderr, "[ERR] Could not open %s for writing\n", outfile);
|
|
free(buf);
|
|
free(of_packed);
|
|
free(rb_packed);
|
|
return 1;
|
|
}
|
|
|
|
n = write(fdout, buf, len);
|
|
|
|
if (n != (unsigned)len) {
|
|
fprintf(stderr, "[ERR] Could not write firmware file\n");
|
|
free(buf);
|
|
free(of_packed);
|
|
free(rb_packed);
|
|
return 1;
|
|
}
|
|
|
|
close(fdout);
|
|
free(buf);
|
|
free(of_packed);
|
|
free(rb_packed);
|
|
fprintf(stderr, "\n[INFO] Patching succeeded!\n");
|
|
|
|
return 0;
|
|
}
|
|
|