Digi Embedded Linux的UBoot命令用法
DEL中的UBoot集成了许多Digi深度定制的命令,详细的文档请下载UBoot使用手册
你也可以在启动时按任意键停在Uboot命令行界面,通过help或?来查询UBoot命令。
除了UBoot命令外,在NVRAM中存有许多默认的或配置好的UBoot参数,您可以根据需要更改相关的值,详细说明在UBoot使用手册中或是在IDE的帮助文档都可以找到。
下面介绍一些常用的交互式命令,所有交互式命令是在交互过程中输入对应的参数,最后都需要通过saveenv来保存结果。
分区命令
flpart 参考UBoot手册用法
视频显示命令
要在UBoot中启用显示接口,请先配置videoinit参数
# setenv videoinit yes # saveenv
设置显示接口可以直接用setenv来设置video参数,但我们还可以通过video命令来交互设置或选择相关参数 比如要设置VGA显示,可以按下面方式操作:
# video Video interface 1) Video 1 2) Video 2 3) LVDS bridge 4) Primary display 5) Cancel Select interface: 2 Displays/video mode 1) Disabled 2) VGA 3) HDMI 4) LCD display 5) Cancel Select displays/video mode:2 VGA video mode 1) 640x480 2) 800x600 3) 1024x768 4) 1280x1024 5) 1680x1050 6) custom1 configuration 7) custom2 configuration 8) Cancel Select VGA mode:4 然后还要设置一下主显示接口 <code> CCWMX53 # video Video interface 1) Video 1 2) Video 2 3) LVDS bridge 4) Primary display 5) Cancel Select interface: 4 Primary display 1) Video 1 2) Video 2 3) Cancel Select primary display: 2 video=displayfb:disabled video2=displayfb:VGA@1280x1024 fbprimary=video2 Remember to save the configuration with 'saveenv' # saveenv
这样就设置好VGA显示输出了
未完,待更新…更多内容请查阅IDE中的Help文档