File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use core::panic::PanicInfo;
1414#[ cfg( userspace) ]
1515use kernel:: userspace;
1616use kernel:: {
17- framebuffer, hlt_loop , println,
17+ framebuffer, println,
1818 task:: { Task , executor:: Executor , keyboard} ,
1919} ;
2020
@@ -77,8 +77,6 @@ fn kernel_main(boot_info: &'static mut BootInfo) -> ! {
7777 executor. spawn ( Task :: new ( keyboard:: print_keypresses ( ) ) ) ;
7878 executor. run ( ) ;
7979
80- hlt_loop ( ) ;
81-
8280 #[ cfg( test) ]
8381 test_main ( ) ;
8482}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ fn main() {
1111 . arg ( format ! ( "format=raw,file={uefi_path}" ) ) ;
1212 cmd. arg ( "-bios" ) . arg ( ovmf_prebuilt:: ovmf_pure_efi ( ) ) ;
1313 cmd. arg ( "-monitor" ) . arg ( "stdio" ) ;
14- cmd. arg ( "-d" ) . arg ( "int" ) ;
14+ // cmd.arg("-d").arg("int");
1515 cmd. arg ( "-no-reboot" ) ;
1616 cmd. arg ( "-no-shutdown" ) ;
1717 cmd. arg ( "-s" ) ;
You can’t perform that action at this time.
0 commit comments