FreeRTOS BSP build errors in EDK for Microblaze

Hi I am trying to build a FreeRTOS BSP in EDK for Microblaze. It seems to be a path that is incorrect somewhere that tries to find “standalonev301a” but this directory is not present in the ISE 14.6 installation. Target is a Spartan6 on a custom board. I have already changed the “OPTION DEPENDS = (standalonev307a);”in “freertosv210.mld” and the “set standaloneversion standalonev307a” in “freertosv210.tcl”. These were both originally st to “standalonev301_a”. The error I keep getting is: make -k all libgen -hw ../microblaze1hwplatform/system.xml -lp C:/SDKrepository -pe microblaze0 -log libgen.log system.mss libgen Xilinx EDK 14.6 Build EDKP.68d Copyright (c) 1995-2012 Xilinx, Inc. All rights reserved. Command Line: libgen -hw ../microblaze1hwplatform/system.xml -lp C:/SDKrepository -pe microblaze_0 -log libgen.log system.mss Staging source files. Running DRCs. Running generate. ERROR:EDK – freertos () – couldn’t open “../standalonev301a/src/config.make”: no such file or directory ERROR:EDK:3416 – Error(s) while running TCL procedure generate(). make: *** [microblaze0/lib/libxil.a] Error 2 make: Target `all’ not remade because of errors.

FreeRTOS BSP build errors in EDK for Microblaze

We are aware of some EDK version issues. The demo was created with version 13. It is intended to get this updated to the latest EDK version in the relatively near future. In the mean time have a look in http://interactive.freertos.org – I think there may be a patch provided by a third party there (?). Regards.

FreeRTOS BSP build errors in EDK for Microblaze

Thank you for the reply Richard, not sure if I can wait for that though I found the problem, it was a no-brainer. It is not enough with “set standaloneversion standalonev307a” There were still 2 more lines in the “freertosv210.tcl” file that refered to standalonev301a: set makeconfig [open “../standalonev301a/src/config.make” w] set filename [file join “../standalonev301a/src” “microblazeinterruptsg.c”] After correcting this it compiles fine! /David