我也在 tboot-devel@lists.sourceforge.net
邮件列表上发布了这个,但我决定也在这里发布,以便更多地了解这个问题。
我正试图让 tboot 工作,但我没有快速获得任何进展。
我已经在我的机器(Lenovo Thinkpad Helix 3701)上的 xubuntu 32 位(内核 3.11.0-18-generic)上安装了 tboot(1.7.4-0ubuntu1 通过 apt-get)。
然后我将 3rd_gen_i5_i7_SINIT_67.BIN 文件放在 /boot/ 目录中(从英特尔网页获取)。
我在 /boot/grub/grub.cfg 中编辑了相关行,如下所示:
submenu "tboot 1.7.4" {
menuentry 'Ubuntu GNU/Linux, with tboot 1.7.4 and Linux 3.11.0-18-generic' --class ubuntu --class gnu-linux --class gnu --class os --class tboot {
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 1ffcf898-aa43-4729-873a-f17bd4342ca0
else
search --no-floppy --fs-uuid --set=root 1ffcf898-aa43-4729-873a-f17bd4342ca0
fi
echo 'Loading tboot 1.7.4 ...'
multiboot /tboot.gz /tboot.gz logging=serial,vga,memory vga_delay=5
echo 'Loading Linux 3.11.0-18-generic ...'
module /vmlinuz-3.11.0-18-generic /vmlinuz-3.11.0-18-generic root=UUID=abda87ef-d7e7-4411-a3cc-49817ad7b692 ro quiet splash intel_iommu=on
echo 'Loading initial ramdisk ...'
module /initrd.img-3.11.0-18-generic /initrd.img-3.11.0-18-generic
echo 'Loading ACM module ...'
module /3rd_gen_i5_i7_SINIT_67.BIN
}
在此之后我重新启动并在 grub 菜单中选择“tboot ...”。
显示“正在执行 GETSEC [SENTER] ...”后,机器重新启动,并且在下一次尝试时出现以下错误:
TXT.ERRORCODE: 0xC00010c1
AC module error: acm_type=0x1, progress=0x0c, error=0x4
我已经根据英特尔网页中的 SINIT_Errors.pdf 解码了错误代码:
1 - Valid
1 - External software
000000 - Reserved
00000000 - Minor Error code
0 - Sotware source
00100 - Major error code
001100 - Class code
0001 - Module type
根据 pdf,这表明:Class ACPI Check
, DMAR not found
.
我真的不知道从这里去哪里,你们有什么建议?
我会在这篇文章中包含更多日志,但我只有 JPEG 格式的日志,因为我必须拍摄屏幕照片以保存输出。如果您认为这会有所帮助,我会尝试将它们转录为文本并发布指向 pastebin 的链接?
先感谢您!