在main.c文件中有一个函数 int abortboot(int bootdelay),其决定了按哪个按键可以中断uboot自动启动内核
int abortboot(int bootdelay)
{
printf("Hit any key to stop autoboot: %2d ", bootdelay);
while ((bootdelay > 0) && (!abort))
{
int i;
--bootdelay;
/* delay 100 * 10ms */
for (i=0; !abort && i<100; ++i)
{
if (tstc())
{
if(getc() == ' ')
{
abort = 1; /* don't auto boot */
bootdelay = 0; /* no more delay */
break;
}
}
udelay (10000);
}
printf ("bbb%2d ", bootdelay);
}
putc ('n');
return abort;
}
由代码可知,按空格键有效,其他键无效。
在main.c文件中有一个函数 int abortboot(int bootdelay),其决定了按哪个按键可以中断uboot自动启动内核
int abortboot(int bootdelay)
{
printf("Hit any key to stop autoboot: %2d ", bootdelay);
while ((bootdelay > 0) && (!abort))
{
int i;
--bootdelay;
/* delay 100 * 10ms */
for (i=0; !abort && i<100; ++i)
{
if (tstc())
{
if(getc() == ' ')
{
abort = 1; /* don't auto boot */
bootdelay = 0; /* no more delay */
break;
}
}
udelay (10000);
}
printf ("bbb%2d ", bootdelay);
}
putc ('n');
return abort;
}
由代码可知,按空格键有效,其他键无效。
举报