sync_pcicfg.tcf
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  This file is used for textual configuration of DSP/BIOS as an alternative
  3.  *  or in addition to the traditional graphical configuration tool (GCONF).
  4.  *  For more information on textual configuration and the TCONF utility,
  5.  *  please refer to the DSP/BIOS TextConf User's Guide (SPRU007).
  6.  */
  7. /*
  8.  *  ======== sync_pci_appcfg.tcf ========
  9.  *
  10.  *  TCF file from which the configuration database is generated.
  11.  *  It includes individual (TCI) modules in charge of different
  12.  *  sections of the configuration.
  13.  */
  14. /*
  15.  *  Load the Platform file for the appropriate board
  16.  */
  17. utils.loadPlatform("Teb6416");
  18. /*
  19.  *  Load the board-specific TCI file.
  20.  */
  21. utils.importFile("Teb6416_ddk.tci");
  22. /*
  23.  *  import the driver configuration.
  24.  */
  25. utils.importFile("Teb6416_udevPci.tci");
  26. /*
  27.  *  Check if there have been errors and generate the configuration
  28.  *  database file.
  29.  */
  30. if (config.hasReportedError == false) {
  31.     prog.gen();
  32. } else {
  33.     throw new Error( "Error in config script -- database not generated." );
  34. }