File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ Contains patches for:
5
5
* virtio-iommu from https://jpbrucker.net/git/linux/log/?h=virtio-iommu/acpi (7616abe11cd1e0224bbd150626564db70bb07c31)
6
6
* Support for virtio-watchdog
7
7
* Bug fix: to support using ACPI reboot rather than EFI reboot
8
-
8
+ * Log boot time via debug port ` 0x80 ` (details: https://github.com/cloud-hypervisor/cloud-hypervisor/blob/main/docs/debug-port.md )
Original file line number Diff line number Diff line change @@ -935,6 +935,8 @@ asmlinkage __visible void __init __no_sanitize_address start_kernel(void)
935
935
char * command_line ;
936
936
char * after_dashes ;
937
937
938
+ outb (0x40 , 0x80 );
939
+
938
940
set_task_stack_end_magic (& init_task );
939
941
smp_setup_processor_id ();
940
942
debug_objects_early_init ();
@@ -1528,6 +1530,8 @@ static int __ref kernel_init(void *unused)
1528
1530
1529
1531
do_sysctl_args ();
1530
1532
1533
+ outb (0x41 , 0x80 );
1534
+
1531
1535
if (ramdisk_execute_command ) {
1532
1536
ret = run_init_process (ramdisk_execute_command );
1533
1537
if (!ret )
You can’t perform that action at this time.
0 commit comments