Notes for my deployment of Hexo
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartMy Hexo Deployment Journey Environment SetupInstalled Node.js v16.x and Git on Windows 11. Verified installation with:12node --versiongit --version Hexo InitializationCreated project folder and installed hexo-cli:1234npm install -g hexo-clihexo init blogcd blognpm install Theme...
NVRAM在UEFI中的应用
1. NVRAM技术概述非易失性随机访问存储器(NVRAM)在UEFI规范中承担着固件与操作系统之间的持久化数据存储任务,主要特性包括: UEFI变量存储(Variable Services) 跨启动周期的配置保存 安全启动相关参数存储 硬件配置存储(如CPU超频参数) 设备初始化状态跟踪 新增实际应用案例: 1234567891011// 存储显示器EDID信息示例EFI_STATUS SaveEdidInfo() { UINT8 edid[128] = { /* EDID数据 */ }; return gRT->SetVariable( L"DisplayEdid", &EdidVendorGuid, EFI_VARIABLE_NON_VOLATILE | EFI_VARIATURE_BOOTSERVICE_ACCESS, sizeof(edid), edid );} 2. UEFI NVRAM结构123456789101112//...
TEST
TESTThis was a test before the launch of my first blog. ...