热门标签 | 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


推荐阅读
  • 本文详细介绍了在 CentOS 7 系统中配置 fstab 文件以实现开机自动挂载 NFS 共享目录的方法,并解决了常见的配置失败问题。 ... [详细]
  • com.sun.javadoc.PackageDoc.exceptions()方法的使用及代码示例 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 字符串学习时间:1.5W(“W”周,下同)知识点checkliststrlen()函数的返回值是什么类型的?字 ... [详细]
  • 多线程基础概览
    本文探讨了多线程的起源及其在现代编程中的重要性。线程的引入是为了增强进程的稳定性,确保一个进程的崩溃不会影响其他进程。而进程的存在则是为了保障操作系统的稳定运行,防止单一应用程序的错误导致整个系统的崩溃。线程作为进程的逻辑单元,多个线程共享同一CPU,需要合理调度以避免资源竞争。 ... [详细]
  • 重要知识点有:函数参数默许值、盈余参数、扩大运算符、new.target属性、块级函数、箭头函数以及尾挪用优化《深切明白ES6》笔记目次函数的默许参数在ES5中,我们给函数传参数, ... [详细]
  • 本文详细介绍了 PHP 中对象的生命周期、内存管理和魔术方法的使用,包括对象的自动销毁、析构函数的作用以及各种魔术方法的具体应用场景。 ... [详细]
  • 检查在所有可能的“?”替换中,给定的二进制字符串中是否出现子字符串“10”带 1 或 0 ... [详细]
  • poj 3352 Road Construction ... [详细]
  • 基于Linux开源VOIP系统LinPhone[四]
    ****************************************************************************************** ... [详细]
  • 技术分享:使用 Flask、AngularJS 和 Jinja2 构建高效前后端交互系统
    技术分享:使用 Flask、AngularJS 和 Jinja2 构建高效前后端交互系统 ... [详细]
  • 本文详细解析了客户端与服务器之间的交互过程,重点介绍了Socket通信机制。IP地址由32位的4个8位二进制数组成,分为网络地址和主机地址两部分。通过使用 `ipconfig /all` 命令,用户可以查看详细的IP配置信息。此外,文章还介绍了如何使用 `ping` 命令测试网络连通性,例如 `ping 127.0.0.1` 可以检测本机网络是否正常。这些技术细节对于理解网络通信的基本原理具有重要意义。 ... [详细]
  • 优化Vite 1.0至2.0升级过程中遇到的某些代码块过大问题解决方案
    本文详细探讨了在将项目从 Vite 1.0 升级到 2.0 的过程中,如何解决某些代码块过大的问题。通过具体的编码示例,文章提供了全面的解决方案,帮助开发者有效优化打包性能。 ... [详细]
  • AIX编程挑战赛:AIX正方形问题的算法解析与Java代码实现
    在昨晚的阅读中,我注意到了CSDN博主西部阿呆-小草屋发表的一篇文章《AIX程序设计大赛——AIX正方形问题》。该文详细阐述了AIX正方形问题的背景,并提供了一种基于Java语言的解决方案。本文将深入解析这一算法的核心思想,并展示具体的Java代码实现,旨在为参赛者和编程爱好者提供有价值的参考。 ... [详细]
  • 本文详细介绍了如何在Linux系统(以CentOS为例)上彻底卸载Zimbra邮件系统,包括停止服务、删除文件和用户等步骤。 ... [详细]
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社区 版权所有