Skip to content

Commit

Permalink
Gettools spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
I049299 authored and I049299 committed Oct 13, 2015
1 parent 08c944b commit 984ccbc
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 35 deletions.
7 changes: 7 additions & 0 deletions gettools.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"""

import os
import sys
import urllib
import urllib2
from HTMLParser import HTMLParser
Expand Down Expand Up @@ -55,6 +56,12 @@ def convertPath(path):


def main():

# Check minimal Python version is 2.7
if sys.version_info < (2, 7):
sys.stderr.write('You need Python 2.7 or later\n')
sys.exit(1)

# Setup url and file paths
url = 'http://softwareupdate.vmware.com/cds/vmw-desktop/fusion/'
dir = os.path.dirname(os.path.abspath(__file__))
Expand Down
17 changes: 17 additions & 0 deletions gettools/gettools.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- mode: python -*-
a = Analysis(['D:\\vmware\\unlocker\\gettools.py'],
pathex=['D:\\PyInstaller-2.1\\gettools'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='gettools.exe',
debug=False,
strip=None,
upx=True,
console=True )
19 changes: 0 additions & 19 deletions readme-bbcode.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,25 +59,6 @@ Latest Linux and ESXi products are OK and do not show this problem.

[code=auto:0] smc.version = "0" |[/code]


To remove the check for server versions for OS X Leopard and Snow Leopard
(10.5 and 10.6) you must use a replacement EFI firwmare module from the firmware
folder.

If you are using a 32-bit installation of OS X:

1. Copy efi32-srvr.rom to guest folder.
2. Edit the vmx file and add:

[code=auto:0]efi32.filename = "efi32-srvr.rom"[/code]

If you are using a 64-bit installation of OS X:

1. Copy efi64-srvr.rom to guest folder.
2. Edit the vmx file and add:

[code=auto:0]efi64.filename = "efi64-srvr.rom"[/code]

[u]4. Windows[/u]

On Windows you will need to either run cmd.exe as Administrator or using
Expand Down
16 changes: 0 additions & 16 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,6 @@ Latest Linux and ESXi products are OK and do not show this problem.
| |
+-----------------------------------------------------------------------------+

To remove the check for server versions for OS X Leopard and Snow Leopard
(10.5 and 10.6) you must use a replacement EFI firwmare module from the firmware
folder.

If you are using a 32-bit installation of OS X:

1. Copy efi32-srvr.rom to guest folder.
2. Edit the vmx file and add:
efi32.filename = "efi32-srvr.rom"

If you are using a 64-bit installation of OS X:

1. Copy efi64-srvr.rom to guest folder.
2. Edit the vmx file and add:
efi64.filename = "efi64-srvr.rom"

4. Windows
----------
On Windows you will need to either run cmd.exe as Administrator or using
Expand Down

0 comments on commit 984ccbc

Please sign in to comment.