Please try following steps. We will also add these to the readme.txt soon.
Regards
-harsh
How to Debug
This section describes how to enable debug messages from various components on serial port during
system bootup.
Serial Port connection
Finding serial port address:
Note:
If serial port address is different on your machine, use that instead of 0x3f8 while following instructions on this section.
Set up connection through serial port:
Kernel Messages
Enable debug output from kernel to go on serial port:
Ikgt & Tboot Messages
Enable debug output from tboot, ikgt loader, and ikgt to go on serial port:
if [ -d /sys/firmware/efi ] ; then
ikgt_log="iobase=0x3f8"
# there's no vga console available under EFI
tboot_log="logging=serial,memory
serial=115200,8n1,0x3f8
"
else
ikgt_log="iobase=0x3f8"
tboot_log="logging=serial,vga,memory
serial=115200,8n1,0x3f8
"
fi
2) Update grub.
$ sudo update-grub
If you wish to change things only temporarily
From: Intel-KGT [mailto:intel-kgt-bounces@lists.01.org]
On Behalf Of Nibinbin
Sent: Thursday, September 10, 2015 8:31 PM
To: intel-kgt@lists.01.org
Subject: [iKGT] 【ikgt】debug mode
Hi,
I’d like to use IKGT with debug mode,but no serial output based on the version 1.1.
I have done :
1、
build ikgt with “make debug=1”
2、
install ikgt with “make install debug=1”
it seems that something else should be configed.
Best wishes,
Robin Ni