public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* VMWare will not run on kernel 2.4.0-test11
@ 2000-11-23 20:07 Phil Stracchino
  2000-11-23 20:15 ` Mohammad A. Haque
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Phil Stracchino @ 2000-11-23 20:07 UTC (permalink / raw)
  To: Linux-KERNEL, support

I just compiled and installed kernel 2.4.0-test11.  Upon rebooting,
vmware-2.0.3-786 refused to run.  Running vmware-config.pl resulted in a
the following message:

	"Your processor does not have a Time Stamp Counter. VMware will
	 not run on this system."

Since (1) my hardware has not changed, (2) this VMware release ran
perfectly on 2.4.0-test10, and (3) I changed nothing but the kernel in
between 2.4.0-test10 and 2.4.0-test11, I feel quite confident in believing
that I do indeed possess a Time Stamp Counter (whatever such a fabulous
beast may be), but for some reason VMware is unable to detect its presence
when running on kernel 2.4.0-test11.  Evidently there has been some change
in the kernel which renders VMware unable to detect this mysterious - but
apparently crucial - feature.


I would appreciate any insights from either kernel folks or VMware folks
as to where this problem may lie, with an eventual aim of patching either
VMware or the kernel to allow VMware to run on this kernel.



-- 
 Linux Now!   ..........Because friends don't let friends use Microsoft.
 phil stracchino   --   the renaissance man   --   mystic zen biker geek
    Vr00m:  2000 Honda CBR929RR   --   Cage:  2000 Dodge Intrepid R/T
 Previous vr00mage:  1986 VF500F (sold), 1991 VFR750F3 (foully murdered)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: VMWare will not run on kernel 2.4.0-test11
  2000-11-23 20:07 VMWare will not run on kernel 2.4.0-test11 Phil Stracchino
@ 2000-11-23 20:15 ` Mohammad A. Haque
  2000-11-23 20:17   ` Phil Stracchino
  2000-11-23 20:18 ` Jan Dvorak
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Mohammad A. Haque @ 2000-11-23 20:15 UTC (permalink / raw)
  To: Phil Stracchino; +Cc: Linux-KERNEL, support

[-- Attachment #1: Type: text/plain, Size: 822 bytes --]

Tiny patch for vmware-config.pl

Phil Stracchino wrote:
> 
> I just compiled and installed kernel 2.4.0-test11.  Upon rebooting,
> vmware-2.0.3-786 refused to run.  Running vmware-config.pl resulted in a
> the following message:
> 
>         "Your processor does not have a Time Stamp Counter. VMware will
>          not run on this system."
> 

-- 

=====================================================================
Mohammad A. Haque                              http://www.haque.net/ 
                                               mhaque@haque.net

  "Alcohol and calculus don't mix.             Project Lead
   Don't drink and derive." --Unknown          http://wm.themes.org/
                                               batmanppc@themes.org
=====================================================================

[-- Attachment #2: vmware-config-2.4.0-test11.patch --]
[-- Type: text/plain, Size: 829 bytes --]

--- vmware-config.pl.old	Thu Nov 23 15:12:32 2000
+++ vmware-config.pl	Thu Nov 23 15:12:55 2000
@@ -1113,7 +1113,7 @@
   if (direct_command(shell_string($gHelper{'grep'}) . ' ' . shell_string('^cpuid') . ' /proc/cpuinfo') eq '') {
     error('Your ' . (($gSystem{'smp'} eq 'yes') ? 'processors do' : 'processor does') . ' not support the cpuid instruction. VMware will not run on this system.' . "\n\n");
   }
-  if (direct_command(shell_string($gHelper{'grep'}) . ' ' . shell_string('^flags.* tsc') . ' /proc/cpuinfo') eq '') {
+  if (direct_command(shell_string($gHelper{'grep'}) . ' ' . shell_string('^features.* tsc') . ' /proc/cpuinfo') eq '') {
     error('Your ' . (($gSystem{'smp'} eq 'yes') ? 'processors do' : 'processor does') . ' not have a Time Stamp Counter. VMware will not run on this system.' . "\n\n");
   }
 }

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: VMWare will not run on kernel 2.4.0-test11
  2000-11-23 20:15 ` Mohammad A. Haque
@ 2000-11-23 20:17   ` Phil Stracchino
  0 siblings, 0 replies; 8+ messages in thread
From: Phil Stracchino @ 2000-11-23 20:17 UTC (permalink / raw)
  To: Mohammad A. Haque; +Cc: Phil Stracchino, Linux-KERNEL, support

On Thu, Nov 23, 2000 at 03:15:25PM -0500, Mohammad A. Haque wrote:
> Tiny patch for vmware-config.pl

Thanks, Mohammed!  That was fast.  :)




-- 
 Linux Now!   ..........Because friends don't let friends use Microsoft.
 phil stracchino   --   the renaissance man   --   mystic zen biker geek
    Vr00m:  2000 Honda CBR929RR   --   Cage:  2000 Dodge Intrepid R/T
 Previous vr00mage:  1986 VF500F (sold), 1991 VFR750F3 (foully murdered)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: VMWare will not run on kernel 2.4.0-test11
  2000-11-23 20:07 VMWare will not run on kernel 2.4.0-test11 Phil Stracchino
  2000-11-23 20:15 ` Mohammad A. Haque
@ 2000-11-23 20:18 ` Jan Dvorak
  2000-11-23 20:22 ` Alan Cox
  2000-11-24 23:03 ` changing BIOS setting Andrew Park
  3 siblings, 0 replies; 8+ messages in thread
From: Jan Dvorak @ 2000-11-23 20:18 UTC (permalink / raw)
  To: Phil Stracchino; +Cc: Linux-KERNEL, support

On Thu, Nov 23, 2000 at 12:07:01PM -0800, Phil Stracchino wrote:
> I just compiled and installed kernel 2.4.0-test11.  Upon rebooting,
> vmware-2.0.3-786 refused to run.  Running vmware-config.pl resulted in a
> the following message:
> 
> 	"Your processor does not have a Time Stamp Counter. VMware will
> 	 not run on this system."
> 
> Since (1) my hardware has not changed, (2) this VMware release ran
> perfectly on 2.4.0-test10, and (3) I changed nothing but the kernel in
> between 2.4.0-test10 and 2.4.0-test11, I feel quite confident in believing
> that I do indeed possess a Time Stamp Counter (whatever such a fabulous
> beast may be), but for some reason VMware is unable to detect its presence
> when running on kernel 2.4.0-test11.  Evidently there has been some change
> in the kernel which renders VMware unable to detect this mysterious - but
> apparently crucial - feature.
> 
> 
> I would appreciate any insights from either kernel folks or VMware folks
> as to where this problem may lie, with an eventual aim of patching either
> VMware or the kernel to allow VMware to run on this kernel.
>

It's probably due to /proc/cpuinfo change - 'flags' has changed to 'features'.

Jan Dvorak <johnydog@go.cz>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: VMWare will not run on kernel 2.4.0-test11
  2000-11-23 20:07 VMWare will not run on kernel 2.4.0-test11 Phil Stracchino
  2000-11-23 20:15 ` Mohammad A. Haque
  2000-11-23 20:18 ` Jan Dvorak
@ 2000-11-23 20:22 ` Alan Cox
  2000-11-24 23:03 ` changing BIOS setting Andrew Park
  3 siblings, 0 replies; 8+ messages in thread
From: Alan Cox @ 2000-11-23 20:22 UTC (permalink / raw)
  To: Phil Stracchino; +Cc: Linux-KERNEL, support

> vmware-2.0.3-786 refused to run.  Running vmware-config.pl resulted in a
> the following message:

Run 2.4.0-test11-ac3
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: changing BIOS setting
  2000-11-24 23:03 ` changing BIOS setting Andrew Park
@ 2000-11-24 22:59   ` Jeff Garzik
  2000-11-26 12:05     ` Chris Wedgwood
  0 siblings, 1 reply; 8+ messages in thread
From: Jeff Garzik @ 2000-11-24 22:59 UTC (permalink / raw)
  To: Andrew Park; +Cc: Linux-KERNEL

Andrew Park wrote:
> Is there a way to change BIOS setting (like boot sequence)
> from the kernel space?  Any pointers would be appreciated.

Yes.  All the BIOS does is configure your hardware.  Get docs on your
hardware, and you can do anything that BIOS does.  For example, if your
parallel port is disabled in BIOS, and you have the datasheet for your
southbridge, then you can "manually" enable the parallel port by writing
certain values to certain PCI config registers.

That said, it is generally a bad idea to do this sort of thing.  Unless
you have a cluster full of machines that all have a BIOS-related
problem, or similar, you should just reboot and adjust your BIOS...

Of course, if you are really motivated, you could just flash your own
BIOS.  Check out http://www.acl.lanl.gov/linuxbios/

Regards,

	Jeff


-- 
Jeff Garzik             |
Building 1024           | The chief enemy of creativity is "good" sense
MandrakeSoft            |          -- Picasso
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* changing BIOS setting
  2000-11-23 20:07 VMWare will not run on kernel 2.4.0-test11 Phil Stracchino
                   ` (2 preceding siblings ...)
  2000-11-23 20:22 ` Alan Cox
@ 2000-11-24 23:03 ` Andrew Park
  2000-11-24 22:59   ` Jeff Garzik
  3 siblings, 1 reply; 8+ messages in thread
From: Andrew Park @ 2000-11-24 23:03 UTC (permalink / raw)
  To: Linux-KERNEL

Hi,
Is there a way to change BIOS setting (like boot sequence)
from the kernel space?  Any pointers would be appreciated.
Thanks

-A.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: changing BIOS setting
  2000-11-24 22:59   ` Jeff Garzik
@ 2000-11-26 12:05     ` Chris Wedgwood
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wedgwood @ 2000-11-26 12:05 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Andrew Park, Linux-KERNEL

However , this won't change boot sequence at that is store in the
CMOS on your RTC chip... if you really wanted though; you could mess
with that via /dev/nvram or whatever it's called.

Not that I suggest this is a good idea, most likely you will corrupt
it and the BIOS will get a checksum error and reinitialize the nvram
to defaults.




  --cw

On Fri, Nov 24, 2000 at 05:59:28PM -0500, Jeff Garzik wrote:

    Andrew Park wrote:

    > Is there a way to change BIOS setting (like boot sequence) from
    > the kernel space?  Any pointers would be appreciated.
    
    Yes.  All the BIOS does is configure your hardware.  Get docs on
    your hardware, and you can do anything that BIOS does.  For
    example, if your parallel port is disabled in BIOS, and you have
    the datasheet for your southbridge, then you can "manually"
    enable the parallel port by writing certain values to certain PCI
    config registers.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2000-11-26 12:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2000-11-23 20:07 VMWare will not run on kernel 2.4.0-test11 Phil Stracchino
2000-11-23 20:15 ` Mohammad A. Haque
2000-11-23 20:17   ` Phil Stracchino
2000-11-23 20:18 ` Jan Dvorak
2000-11-23 20:22 ` Alan Cox
2000-11-24 23:03 ` changing BIOS setting Andrew Park
2000-11-24 22:59   ` Jeff Garzik
2000-11-26 12:05     ` Chris Wedgwood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox