|
VXWORKS启动时超级终端会打印以下信息:
Copyright 1984-1998 Wind River Systems, Inc.
CPU: Motorola ADS - PowerPC 860
VxWorks: 5.4.2
BSP version: 1.2/4
Creation date: Dec 7 2009
WDB: Ready.
我想改一下输出的内容,应该怎么做.
D:\tornado\TARGET\CONFIG\ALL\usrConfig.c
#ifdef INCLUDE_WDB
wdbConfig();
#ifdef INCLUDE_WDB_BANNER
#ifndef INCLUDE_SHELL
/* short banner, like the bootPrintLogo banner */
printf ("\n\n");
printf ("%17s%s", "","VxWorks\n\n");
printf ("Copyright 1984-1998 Wind River Systems, Inc.\n\n");
printf (" CPU: %s\n", sysModel ());
printf (" VxWorks: " VXWORKS_VERSION "\n");
printf (" BSP version: " BSP_VERSION BSP_REV "\n");
printf (" Creation date: %s\n", __DATE__);
printf (" WDB: %s.\n\n",
((wdbRunsExternal () || wdbRunsTasking ()) ?
"Ready" : "Agent configuration failed") );
#endif /*INCLUDE_SHELL*/
#endif /*INCLUDE_WDB_BANNER*/
#endif /* INCLUDE_WDB */
我在该文件上进行了修改,重新Rebulid All后,也不见有变化,usrConfig.c好象没有被编译,到底应该怎么做才可实现修改?
|
|