Part Number: 66AK2E05
Tool/software: Linux
Hi !
I m trying to load linux in k2e via the method explained in the link http://processors.wiki.ti.com/index.php/MCSDK_UG_Chapter_Exploring#Loading_and_Running_U-Boot_on_EVM_through_CCS
my problem is that when i try to do mon_install 0x0c140000 i get stuck here and when i try to load kernel directly using bootm i get the following error
"Wrong Image Format for bootm command
ERROR: can't get kernel image!"
following are my js file with all images used are pre built and taken from board support for k2e
all images get loaded properly and i have double checked both my .js files
var pathLog = PATH_LOADLIN + "/tracelog.xml"; var pathXSL = PATH_LOADLIN + "/loadlin.xsl"; var pathCCXML = PATH_LOADLIN + "/k2e.ccxml"; var pathKernel = PATH_LOADLIN + "/uImage-keystone-evm.bin"; var pathDtb = PATH_LOADLIN + "/uImage-k2e-evm.dtb"; var pathVmlinux = PATH_LOADLIN + "/vmlinux"; var pathInitrd = PATH_LOADLIN + "/arago-console-image-k2e-evm.cpio.gz"; var sessionName = "Texas Instruments XDS2xx USB Onboard Debug Probe_0/arm_A15_0";
var pathLog = PATH_LOADLIN + "/tracelog.xml"; var pathXSL = PATH_LOADLIN + "/loadlin.xsl"; var pathCCXML = PATH_LOADLIN + "/k2e.ccxml"; var pathUboot = PATH_LOADLIN + "/u-boot.bin"; var pathSKern = PATH_LOADLIN + "/skern-k2e-evm.bin"; var sessionName = "Texas Instruments XDS2xx USB Onboard Debug Probe_0/arm_A15_0";
any help would be appreciated !!
Hannan