zoukankan      html  css  js  c++  java
  • 启动架构wec7 启动架构

    新手发帖,很多方面都是刚入门,有错误的地方请大家见谅,欢迎批评指正

        CE Boot Architecture
    The CE Boot framework consists of the components shown below in Figure 1. The core code calls the code in the boot scenario, which calls the boot driver factory to instantiate boot drivers. The boot drivers communicate with the hardware to do the work (such as downloading the OS over Ethernet or reading it from persistent storage).

        启动和架构

                   Figure 1: CE Boot Framework Architecture

        
    The CE Boot components shown in Figure 1 are: 

        Core:The core code controls the flow of execution, memory mapping between physical and virtual addresses, and memory allocation. For more information, see Core Code. Boot Scenario:The boot scenario consists of code called by the core code to perform individual tasks, such as loading the OS into memory. For more information, see Boot Scenario Code.

        Boot Driver Factory:The boot driver factory is a function that creates and initializes a boot driver and returns a handle to it. For more information on the boot driver factory, see Boot Driver Factory Code.

        Boot Drivers:The boot driver code standardizes access to hardware devices by using only IOCTLs and a deinitialization function to communicate with them. For more information on boot drivers, see Boot Driver Code. (Note that the core CE Boot library can be used without any boot drivers.)

        Notification and Logging:Notification functions interact with the user by providing information about events and by accepting feedback. Logging functions are typically used for debugging. For more information on notification and logging, see Notification and Logging Code.

        每日一道理
    美丽是平凡的,平凡得让你感觉不到她的存在;美丽是平淡的,平淡得只剩下温馨的回忆;美丽又是平静的,平静得只有你费尽心思才能激起她的涟漪。

        Download the OS image into persistent storage and then into RAM
    1. When the device is started, the boot loader is in BOOT_STATE_POWERON.
    2. In BOOT_STATE_CONFIG, the boot loader loads the saved or default configuration boot settings, and the user can select choices from a boot menu.
    3. In BOOT_STATE_DOWNLOAD, the boot loader downloads the image into persistent storage, such as flash memory.
    CE Boot Framework
    4. In BOOT_STATE_PRELOAD, the boot loader determines if it will start the Update Loader (ULDR). In this scenario, it doesn’t start it.
    5. In BOOT_STATE_LOAD_OS, the boot loader loads the image from persistent storage into RAM.
    6. Finally, BOOT_STATE_RUN signals the successful end to the boot process.
    Download the OS image directly into RAM
    1. When the device is started, the boot loader is in BOOT_STATE_POWERON.
    2. In BOOT_STATE_CONFIG, the boot loader loads the saved or default configuration boot settings, and the user can select choices from a menu.
    3. In BOOT_STATE_DOWNLOAD, the boot loader loads the image into RAM.
    4. Finally, BOOT_STATE_RUN signals the successful end to the boot process.
    Load the OS image that is already in persistent storage into RAM
    1. When the device is started, the boot loader is in BOOT_STATE_POWERON.
    2. In BOOT_STATE_CONFIG, the boot loader loads the saved or default configuration boot settings, and the user can select choices from a menu.
    3. In BOOT_STATE_PRELOAD, the boot loader determines if it will start the ULDR. In this scenario, it doesn’t start it.
    4. In BOOT_STATE_LOAD_OS, the boot loader loads the image from persistent storage into RAM.
    5. Finally, BOOT_STATE_RUN signals the successful end to the boot process.
    Load a ULDR image from persistent storage into RAM
    1. When the device is started, the boot loader is in BOOT_STATE_POWERON.
    2. In BOOT_STATE_CONFIG, the boot loader loads the saved or default configuration boot settings, and the user can select choices from a menu.
    3. In BOOT_STATE_ULDR, the boot loader loads the ULDR image from persistent storage into RAM.
    4. Finally, BOOT_STATE_RUN signals the successful end to the boot process. In this case, the ULDR image is booted instead of the OS image.

    文章结束给大家分享下程序员的一些笑话语录: 人脑与电脑的相同点和不同点,人脑会记忆数字,电脑也会记忆数字;人脑会记忆程序,电脑也会记忆程序,但是人脑具有感知能力,这种能力电脑无法模仿,人的记忆会影响到人做任何事情,但是电脑只有程序软件。比尔还表示,人脑与电脑之间最重要的一个差别就是潜意识。对于人脑存储记忆的特别之处,比尔表示,人脑并不大,但是人脑重要的功能是联络,人脑会把同样的记忆存储在不同的地方,因此记忆读取的速度就不相同,而这种速度取决于使用的频率和知识的重要性。人脑的记忆存储能力会随着年龄增长而退化,同时记忆的质量也会随着年龄退化。经典语录网

    --------------------------------- 原创文章 By
    启动和架构
    ---------------------------------

  • 相关阅读:
    error MSB8031(将vs2010的工程用vs2013打开时出的错)
    MFC如何使控件大小随着对话框大小自动调整
    基于MFC对话框程序中添加菜单栏 (CMenu)
    mfc改变对话框窗口大小
    MFC设置对话框大小
    uart与usart区别
    uart接口介绍和认识
    USB引脚属性
    使用百度云服务器BCC搭建网站,过程记录
    linux下文件的复制、移动与删除命令为:cp,mv,rm
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3111380.html
Copyright © 2011-2022 走看看