I have been configuring a VF50 with a default CE7 image + .net Compact framework.
I then configure the splash screen an boot parameters \FlashDisk\Autorun to start the required software.
All good so far…
I have setup a production programming USB stick and backed up the FileSystem,Registry and ConfigBlock.
My problem comes when I try to update a new VF50.
The Update software manages to clear the registry, then fails to complete any other task with no error messages as to why.
Even updating manually fails: using update tool.
Updated OS from CE6 to CE7 - OK
Updated Registry,FileSystem,configblock - appears OK.
But on a cold boot fails to find the .net compact framework installed.
ProductionProgramming.bat is as follows:
REM Path to UpdateTool.exe (relatvie to this batch file)
set PATH_UPDATETOOL=…\UpdateTool
REM Configuration Section end
REM ################################################################################
ECHO Toradex Production Programming
ECHO ******************************
REM First clear registry
“%PATH_UPDATETOOL%\updatetool.exe” /cu
REM Update bootloader
“%PATH_UPDATETOOL%\updatetool.exe” /u bootloader,raw,\USB HD\backup\eboot.img
REM Update image
“%PATH_UPDATETOOL%\updatetool.exe” /u os,bin,\USB HD\backup\nk.bin
REM Update Config block
“%PATH_UPDATETOOL%\updatetool.exe” /u configblock,raw,\USB HD\backup\ConfigBlock.cfg
REM Update Registry
“%PATH_UPDATETOOL%\updatetool.exe” /u registry,raw,\USB HD\backup\Registry.ivr
REM Update File System
“%PATH_UPDATETOOL%\updatetool.exe” /u filesystem,raw,\USB HD\backup\FileSystem.ivf
ECHO Production programming done.
ECHO *******************************
Any help would be greatly appreciated.