gpt4 book ai didi

c - 用于查询和设置 bios 属性的 API

转载 作者:IT王子 更新时间:2023-10-29 00:27:00 24 4
gpt4 key购买 nike

假设我想在 Linux 中更改计算机 BIOS 中的设置(如果重要的话,假设是 Ubuntu 11。)存在哪些类型的 API 可以让您查询和操作 BIOS 设置?

此外,进行此类开发的良好资源有哪些?

最佳答案

The CMOS memory exists outside of the normal address space and cannot contain directly executable code. It is reachable through IN and OUT commands at port number 70h (112d) and 71h (113d). To read a CMOS byte, an OUT to port 70h is executed with the address of the byte to be read and an IN from port 71h will then retrieve the requested information.

您可以使用inboutb 宏从这些端口读取和写入,以获取存储在CMOS 中的整个BIOS 设置。有关存储的设置内存格式,请查看:http://bochs.sourceforge.net/techspec/CMOS-reference.txt

这些映射实际上是依赖于供应商的,但其中大部分应该是通用的。

虽然这不是一个 API,但是您可以通过它直接访问 CMOS 内存并制作您自己的 API。对于快速程序,我建议获取 API。在这种情况下查看@Nemo 的回答。

关于c - 用于查询和设置 bios 属性的 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6259124/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com