Skip to content

Instantly share code, notes, and snippets.

@aa65535
Last active July 13, 2024 14:10
Show Gist options
  • Save aa65535/6d873f8292b541568637ce673b52c6f0 to your computer and use it in GitHub Desktop.
Save aa65535/6d873f8292b541568637ce673b52c6f0 to your computer and use it in GitHub Desktop.
HP Z440 使用 Intel(R) Iris(R) Xe Graphics (DG1) 的 BIOS 设置

此方案的前提是你需要有一个可以正常安装系统的“亮机卡”,同时在有“亮机卡”的时候就设置好 BIOS 并安装好 DG1 的驱动。 目前情况是设置好之后可以正常进 BIOS 设置。

因为涉及到 BIOS 中的隐藏选项,所以使用 BiosConfigUtility 工具实现 BIOS 的修改。

使用以下命令获取当前BIOS设置:

BiosConfigUtility /GetConfig:"bios.txt"

执行成功后会得到 bios.txt 文件,使用文本编辑器打开,查找以下选项并修改。

Fast Boot
	*Disable
	Enable
Legacy Boot Options
	*Disable
	Enable
Configure Option ROM Launch Policy
	All Legacy
	*All UEFI
	All UEFI Except Video
Headless Boot
	Disable
	*Enable
MMIO Assignment Mode
	32 Bit
	*64 Bit
	Auto
Slot 2 Option ROM Download
	*Disable
	Enable
Slot 2 Error Handling
	Enable
	*Disable
PCI VGA Palette Snooping
	*Disable
	Enable

Slot 2 相关选项是因为 DG1 是插在第一个 x16 插槽上,如果你的 DG1 是第二个 x16 插槽,需要改成 Slot 5。 以上选项并不一定都是必须的,但是我并没有做更多的测试,我是在修改了以上选项后可以脱离“亮机卡”单独使用 DG1 启动。

将修改后的 bios.txt 文件写回 BIOS 设置:

BiosConfigUtility /SetConfig:"bios.txt"

以上命令执行后会提示有哪些选项被修改了,如果没有错误,那么可以关机并取下“亮机卡”了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment