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