Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3125
  • 博文数量: 2
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 30
  • 用 户 组: 普通用户
  • 注册时间: 2020-07-16 11:10
个人简介

瑞芯微/Amlogic开发板定制,人脸识别机定制

文章分类

全部博文(2)

文章存档

2021年(1)

2020年(1)

我的朋友
最近访客

分类: LINUX

2020-07-16 11:12:55

uboot进入kernel中间的延时时间可以通过BOOTDELAY这个宏来控制。
修改uboot/common/Kconfig文件

config BOOTDELAY
        int "delay in seconds before automatically booting"
        default 0
        depends on AUTOBOOT
        help
          Delay before automatically running bootcmd;
          set to 0 to autoboot with no delay, but you can stop it by key input.
          set to -1 to disable autoboot.
          set to -2 to autoboot with no delay and not check for abort

          See doc/README.autoboot for details.


default 0 表示不延时,1表示延时1s。

阅读(524) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~