热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

uboot2019引导菜单分析

configsls2k_core.h中定义了默认的菜单项及其他默认变量#defineCONFIG_EXTRA_ENV_SETTINGS\CONSOLE_STDOUT_SETTIN

configs/ls2k_core.h 中定义了默认的菜单项及其他默认变量

#define CONFIG_EXTRA_ENV_SETTINGS \CONSOLE_STDOUT_SETTINGS \"loadaddr=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \"rd_start=0x86000000\0" \"rd_size=0x02000000\0" \"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \"splashpos=m,m\0" \"panel0=" "hz101wx" "\0" \"panel1=" "hz101wx" "\0" \"menucmd=bootmenu\0" \"bootmenu_0=0. U-Boot boot order=boot\0" \"bootmenu_1=1. Boot From SATA=" BOOT_SATA_DEFAULT "\0" \"bootmenu_2=2. Boot From SATA CFG=" BOOT_SATA_CFG_DEFAULT "\0" \"bootmenu_3=3. Boot From NAND=" BOOT_NAND_DEFAULT "\0" \"bootmenu_4=4. Update Kernel(tftp to nand)=loongson_update tftp kernel nand\0" \"bootmenu_5=5. Update Kernel(tftp to sata)=loongson_update tftp kernel sata\0" \"bootmenu_6=6. Update Rootfs(tftp to nand)=loongson_update tftp rootfs\0" \"bootmenu_7=7. Update U-Boot(tftp)=loongson_update tftp uboot\0" \"bootmenu_8=8. Update Kernel(usb to nand)=loongson_update usb kernel nand\0" \"bootmenu_9=9. Update Kernel(usb to sata)=loongson_update usb kernel sata\0" \"bootmenu_10=10. Update Rootfs(usb to nand)=loongson_update usb rootfs\0" \"bootmenu_11=11. Update U-Boot(usb)=loongson_update usb uboot\0" \"bootmenu_12=12. Update All(usb)=loongson_update usb all nand\0" \"bootmenu_13=13. Recover system=recover_cmd\0" \"bootmenu_delay=10\0" \

include/env_default.h 中定义了字符串数组 default_environment 其中的定义如下

#ifdef DEFAULT_ENV_INSTANCE_EMBEDDED
env_t embedded_environment __UBOOT_ENV_SECTION__(environment) = {ENV_CRC, /* CRC Sum */
#ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT1, /* Flags: valid */
#endif{
#elif defined(DEFAULT_ENV_INSTANCE_STATIC)
static char default_environment[] = {
#else
const uchar default_environment[] = {
#endif
#ifdef CONFIG_USE_BOOTARGS"bootargs=" CONFIG_BOOTARGS "\0"
#endif
#ifdef CONFIG_BOOTCOMMAND"bootcmd=" CONFIG_BOOTCOMMAND "\0"
#endif
#ifdef CONFIG_ENV_VARS_UBOOT_CONFIG"arch=" CONFIG_SYS_ARCH "\0"
#ifdef CONFIG_SYS_CPU"cpu=" CONFIG_SYS_CPU "\0"
#endif
#ifdef CONFIG_SYS_BOARD"board=" CONFIG_SYS_BOARD "\0""board_name=" CONFIG_SYS_BOARD "\0"
#endif
#ifdef CONFIG_SYS_VENDOR"vendor=" CONFIG_SYS_VENDOR "\0"
#endif
#ifdef CONFIG_SYS_SOC"soc=" CONFIG_SYS_SOC "\0"
#endif
#endif
#if defined(CONFIG_BOOTCOUNT_BOOTLIMIT) && (CONFIG_BOOTCOUNT_BOOTLIMIT > 0)"bootlimit=" __stringify(CONFIG_BOOTCOUNT_BOOTLIMIT)"\0"
#endif
#ifdef CONFIG_EXTRA_ENV_SETTINGSCONFIG_EXTRA_ENV_SETTINGS
#endif"\0"
#else /* CONFIG_USE_DEFAULT_ENV_FILE */
#include "generated/defaultenv_autogenerated.h"
#endif
#ifdef DEFAULT_ENV_INSTANCE_EMBEDDED}
#endif
};

菜单项显示及工作流程

do_bootmenu cmd/bootmenu.cbootmenu_show bootmenu_create 创建所有菜单项,是一个链表结构bootmenu_getoption 获取bootmenu_%d 变量,赋值给bootmenu_entry. 上面default_environment中定义了bootmenu_xx 变量menu_create 创建菜单bootmenu_print_entry 打印菜单项 回调函数bootmenu_choice_entry 等待用户选择菜单项 回调函数bootmenu_autoboot_loop 提示延时 bootmenu_loop 等待用户按键选择 menu_item_add 添加前面创建的菜单项加到此菜单中menu_default_set 设置默认菜单项menu_get_choice 获取用户选择的菜单项,基中包含命令及标题等信息menu_interactive_choice common/menu.cmenu_display 显示菜单项menu_display_statusline 打印菜单状态栏“U-Boot Boot Menu” 与 “Press UP/DOWN to move, ENTER to select"” menu_item_by_key 调用bootmenu_print_entry 依次打印每个菜单项

common/menu.c 中定义的menumenu_item

struct menu {struct menu_item *default_item;int timeout;char *title;int prompt;void (*item_data_print)(void *);char *(*item_choice)(void *);void *item_choice_data;struct list_head items;int item_cnt;
};struct menu_item {char *key;void *data;struct list_head list;
};

cmd/bootmenu.c 中定义中bootmenu_entrybootmenu_data

struct bootmenu_entry {unsigned short int num; /* unique number 0 .. MAX_COUNT */char key[3]; /* key identifier of number */char *title; /* title of entry */char *command; /* hush command of entry */struct bootmenu_data *menu; /* this bootmenu */struct bootmenu_entry *next; /* next menu entry (num+1) */
};struct bootmenu_data {int delay; /* delay for autoboot */int active; /* active menu entry */int count; /* total count of menu entries */struct bootmenu_entry *first; /* first menu entry */
};

整个关联起来之后 menu_item 中的data 对应的就是bootmenu_entrybootmenu_entry 是可以根据需要而自已定义相应的结构体数据。bootmenu_data对应的是menu中的item_choice_data


添加自已的菜单

struct menu *menu_create(char *title, int timeout, int prompt,void (*item_data_print)(void *),char *(*item_choice)(void *),void *item_choice_data);
int menu_default_set(struct menu *m, char *item_key);
int menu_get_choice(struct menu *m, void **choice);
int menu_item_add(struct menu *m, char *item_key, void *item_data);
int menu_destroy(struct menu *m);
void menu_display_statusline(struct menu *m);
int menu_default_choice(struct menu *m, void **choice);

操作菜单相关的接口都在 common/menu.c 中有实现。 要添加菜单只需实现item_data_printitem_choice 回调及item_choice_data 自定义的数据结构。 具体流程可以参考cmd/bootmenu.c中的do_bootmenu


推荐阅读
  • 本文详细介绍了如何在Oracle VM VirtualBox中实现主机与虚拟机之间的数据交换,包括安装Guest Additions增强功能,以及如何利用这些功能进行文件传输、屏幕调整等操作。 ... [详细]
  • 本文探讨了异步编程的发展历程,从最初的AJAX异步回调到现代的Promise、Generator+Co以及Async/Await等技术。文章详细分析了Promise的工作原理及其源码实现,帮助开发者更好地理解和使用这一重要工具。 ... [详细]
  • 想把一组chara[4096]的数组拷贝到shortb[6][256]中,尝试过用循环移位的方式,还用中间变量shortc[2048]的方式。得出的结论:1.移位方式效率最低2. ... [详细]
  • 本文详细探讨了在Java中如何将图像对象转换为文件和字节数组(Byte[])的技术。虽然网络上存在大量相关资料,但实际操作时仍需注意细节。本文通过使用JMSL 4.0库中的图表对象作为示例,提供了一种实用的方法。 ... [详细]
  • Maven + Spring + MyBatis + MySQL 环境搭建与实例解析
    本文详细介绍如何使用MySQL数据库进行环境搭建,包括创建数据库表并插入示例数据。随后,逐步指导如何配置Maven项目,整合Spring框架与MyBatis,实现高效的数据访问。 ... [详细]
  • 在1995年,Simon Plouffe 发现了一种特殊的求和方法来表示某些常数。两年后,Bailey 和 Borwein 在他们的论文中发表了这一发现,这种方法被命名为 Bailey-Borwein-Plouffe (BBP) 公式。该问题要求计算圆周率 π 的第 n 个十六进制数字。 ... [详细]
  • 本文详细介绍了如何在循环双链表的指定位置插入新元素的方法,包括必要的步骤和代码示例。 ... [详细]
  • 本文探讨了在使用JavaMail发送电子邮件时,抄送功能未能正常工作的问题,并提供了详细的代码示例和解决方法。 ... [详细]
  • 如何处理PHP缺少扩展的问题
    本文将详细介绍如何解决PHP环境中缺少扩展的问题,包括检查当前环境、修改配置文件以及验证修改是否生效的具体步骤,帮助开发者更好地管理和使用PHP扩展。 ... [详细]
  • Kafka入门指南
    本文将详细介绍如何在CentOS 7上安装和配置Kafka,包括必要的环境准备、JDK和Zookeeper的配置步骤。 ... [详细]
  • pypy 真的能让 Python 比 C 还快么?
    作者:肖恩顿来源:游戏不存在最近“pypy为什么能让python比c还快”刷屏了,原文讲的内容偏理论,干货比较少。我们可以再深入一点点,了解pypy的真相。正式开始之前,多唠叨两句 ... [详细]
  • 本文详细介绍了TypeScript中的各种数据类型,包括基本类型、数组、元组、枚举、any、void、never以及类型断言,并提供了示例代码及其编译结果。 ... [详细]
  • 本打算教一步步实现koa-router,因为要解释的太多了,所以先简化成mini版本,从实现部分功能到阅读源码,希望能让你好理解一些。希望你之前有读过koa源码,没有的话,给你链接 ... [详细]
  • HPE OEM Brocade 300 交换机无中断固件升级指南
    本文详细介绍了如何通过FTP方式对HPE OEM Brocade 300交换机进行无中断固件升级,确保网络服务的连续性。 ... [详细]
  • 本文深入探讨了动态赋值的概念及其在编程实践中的应用,特别是通过Java代码示例来展示如何利用循环结构动态地为数组分配值。 ... [详细]
author-avatar
大美女雪梨醒目
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有