From d46cf9702400d7457371c4d27cc11e46522d4694 Mon Sep 17 00:00:00 2001 From: Barry Wardell Date: Sat, 20 Oct 2007 17:08:41 +0000 Subject: Support database rebuild disabling when USB is connected for all e200 OF versions. Some people may have to update the OF (to any version they want) using sansapatcher before it will work. This just ensures that the NVPARAMS are in a good state and we can be sure where to look for the rebuild flag.The c200 OF doesn't reboot before rebuilding the database, so our trick won't ever work there. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15225 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/sansapatcher/sansapatcher.c | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) (limited to 'rbutil') diff --git a/rbutil/sansapatcher/sansapatcher.c b/rbutil/sansapatcher/sansapatcher.c index 2d44e75303..bc03108930 100644 --- a/rbutil/sansapatcher/sansapatcher.c +++ b/rbutil/sansapatcher/sansapatcher.c @@ -34,7 +34,9 @@ #include "bootimg_e200.h" #endif /* The offset of the MI4 image header in the firmware partition */ -#define PPMI_OFFSET 0x80000 +#define PPMI_OFFSET 0x80000 +#define NVPARAMS_OFFSET 0x780000 +#define NVPARAMS_SIZE (0x80000-0x200) extern int verbose; @@ -882,7 +884,26 @@ int sansa_update_of(struct sansa_t* sansa, char* filename) fprintf(stderr,"[ERR] Short write in sansa_update_of\n"); return -1; } - + + /* Step 4 - zero out the nvparams section - we have to do this or we end up + with multiple copies of the nvparams data and don't know which one to + work with for the database rebuild disabling trick in our bootloader */ + if (strcmp(sansa->targetname,"e200") == 0) { + printf("[INFO] Resetting Original Firmware settings\n"); + if (sansa_seek(sansa, sansa->start+NVPARAMS_OFFSET+0x200) < 0) { + fprintf(stderr,"[ERR] Seek to 0x%08llx in sansa_update_of failed.\n", + sansa->start+NVPARAMS_OFFSET+0x200); + return -1; + } + + memset(sectorbuf,0,NVPARAMS_SIZE); + n=sansa_write(sansa, sectorbuf, NVPARAMS_SIZE); + if (n < NVPARAMS_SIZE) { + fprintf(stderr,"[ERR] Short write in sansa_update_of\n"); + return -1; + } + } + return 0; } -- cgit