楼主,我正好也是用tornado2.2/VxWorks5.5 在pentium4 /865芯片组 的工控机上移植。
刚开始和你的情况一样,也是只停留在v1.6++++++++++++++++++++++++++++++这里,进不去蓝色屏幕。
但是同一个硬盘拿到845芯片组的电脑上就能启动。
后来我在国外网站上找到一点提示,对bsp的config.h文件做如下修改:
all you have to do is to modify the config.h file of the BSP as given
below.
#define INCLUDE_CPU_PROBE /* define to perform sysCpuProbe() */
#ifndef INCLUDE_CPU_PROBE
# undef CPU
# define CPU PENTIUM /* for CPU conditionals in BSP */
#endif /* INCLUDE_CPU_PROBE */
to
#undef INCLUDE_CPU_PROBE
#ifndef INCLUDE_CPU_PROBE
# undef CPU
# define CPU PENTIUM4 /* for CPU conditionals in BSP */
#endif /* INCLUDE_CPU_PROBE */
之后重新做bootrom,再制作启动盘,就可以启动了
详情回复
发表于 2009-7-9 19:53
all you have to do is to modify the config.h file of the BSP as given
below.
#define INCLUDE_CPU_PROBE /* define to perform sysCpuProbe() */
#ifndef INCLUDE_CPU_PROBE
# undef CPU
# define CPU PENTIUM /* for CPU conditionals in BSP */
#endif /* INCLUDE_CPU_PROBE */
to
#undef INCLUDE_CPU_PROBE
#ifndef INCLUDE_CPU_PROBE
# undef CPU
# define CPU PENTIUM4 /* for CPU conditionals in BSP */
#endif /* INCLUDE_CPU_PROBE */