X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Fvm.c;h=2a67e385d3a5a08d8d4cf7ea3990db65a2e1bea2;hb=1a8382a1bd0a4e537b28d7906399bee2bff043de;hp=910dbd6ee8f58e700f2afea8cb7589caa4770628;hpb=028d9b71d4a4e6d49a22ad5904b6dd2f8c596a26;p=palacios.git diff --git a/palacios/src/geekos/vm.c b/palacios/src/geekos/vm.c index 910dbd6..2a67e38 100644 --- a/palacios/src/geekos/vm.c +++ b/palacios/src/geekos/vm.c @@ -319,7 +319,7 @@ int RunVMM(struct Boot_Info * bootInfo) { struct vm_device * nvram = create_nvram(); //struct vm_device * timer = create_timer(); struct vm_device * pic = create_pic(); - //struct vm_device * keyboard = create_keyboard(); + struct vm_device * keyboard = create_keyboard(); struct vm_device * pit = create_pit(); //generic_port_range_type range = {0,1024} ; // hook first 1024 ports if not already hooked @@ -331,7 +331,7 @@ int RunVMM(struct Boot_Info * bootInfo) { //attach_device(&(vm_info), timer); attach_device(&(vm_info), pic); attach_device(&(vm_info), pit); - //attach_device(&(vm_info), keyboard); + attach_device(&(vm_info), keyboard); // Important that this be attached last! //attach_device(&(vm_info), generic);