smp_application.json 793 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "run_config": {
  3. "target" : "hardware",
  4. "hardware" : {
  5. "baudrate": 115200,
  6. "timeout": 60
  7. },
  8. "qemu": {
  9. "qemu32": "qemu-system-riscv32",
  10. "qemu64": "qemu-system-riscv64",
  11. "timeout": 60
  12. }
  13. },
  14. "build_target": "clean all",
  15. "build_config": {
  16. "SOC": "demosoc",
  17. "BOARD": "nuclei_fpga_eval"
  18. },
  19. "checks": {
  20. "PASS": [],
  21. "FAIL": ["MEPC"]
  22. },
  23. "appdirs": [
  24. "application/baremetal/smphello"
  25. ],
  26. "appdirs_ignore": [
  27. ],
  28. "appconfig": {
  29. "application/baremetal/smphello": {
  30. "build_config" : {},
  31. "checks": {
  32. "PASS": ["All harts boot successfully!"]
  33. }
  34. }
  35. }
  36. }