Files
chipsec-chipsec/scripts/build_exe_win7-amd64.py
T
2021-08-12 08:27:33 -07:00

122 lines
3.9 KiB
Python

#CHIPSEC: Platform Security Assessment Framework
#Copyright (c) 2010-2021, Intel Corporation
#
#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; Version 2.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
#Contact information:
#chipsec@intel.com
#
## \addtogroup build Build scripts
# Executable build scripts
## \addtogroup build
# build_exe_win7-amd64.py -- py2exe setup module for building chipsec.exe Win executable for windows 7
##\file
# py2exe setup module for building chipsec.exe Win executable for windows 7
#
# To build Windows executable chipsec.exe using py2exe:
#
# 1. Install py2exe package from http://www.py2exe.org
# * for Python 3 please use https://github.com/albertosottile/py2exe instead
# 2. run "python build_exe_<platform>.py py2exe"
# 3. chipsec.exe and all needed libraries will be created in "./bin/<platform>"
#
import os
import sys
print('Python', sys.version)
import py2exe
WIN_DRIVER_INSTALL_PATH = "chipsec/helper/win"
VERSION_FILE="VERSION"
build_dir = os.getcwd()
root_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir))
bin_dir = os.path.join(root_dir, "bin")
tool_dir = root_dir
cfg_dir = os.path.join(tool_dir, "chipsec", "cfg")
version_file = os.path.join(root_dir, "chipsec", VERSION_FILE)
win_7_amd64 = os.path.join(bin_dir, 'win7-amd64');
print(os.getcwd())
os.chdir( tool_dir )
sys.path.append(tool_dir)
print(os.getcwd())
data_files = [
(WIN_DRIVER_INSTALL_PATH + "/win7_amd64", ['chipsec/helper/win/win7_amd64/chipsec_hlpr.sys']),
('chipsec/modules/tools/uefi', ['chipsec/modules/tools/uefi/blockedlist.json']),
('chipsec/modules/tools/secureboot', [
'chipsec/modules/tools/secureboot/Shell.efi',
'chipsec/modules/tools/secureboot/te.cfg'
]),
]
for current, dirs, files in os.walk(cfg_dir):
for file in files:
if file.endswith('.xml'):
tail = current.replace(cfg_dir, '').replace('\\', '/')
xf = 'chipsec/cfg{}'.format(tail), ['chipsec/cfg{}/{}'.format(tail, file)]
data_files.append(xf)
version = ""
if os.path.exists(version_file):
data_files.append(('.', [version_file]))
with open(version_file, "r") as verFile:
version = verFile.read()
print("VERSION: {}".format(version))
mypackages = []
for current, dirs, files in os.walk(tool_dir ):
if current.startswith(os.path.join(tool_dir, 'build')):
continue
for file in files:
if file == "__init__.py":
pkg = current.replace(tool_dir +os.path.sep, "")
pkg = pkg.replace(os.path.sep, '.')
mypackages.append(pkg)
print(pkg)
# Don't rely on py2exe to create the dist dir
if not os.path.exists(win_7_amd64):
os.makedirs(win_7_amd64)
from distutils.core import setup
includes = []
setup(
name = 'chipsec',
description = 'CHIPSEC: Platform Security Assessment Framework',
version = version,
console = [ 'chipsec_main.py', 'chipsec_util.py' ],
data_files = data_files,
options = {
'build': { 'build_base': build_dir },
'py2exe': {
'dist_dir': win_7_amd64,
'packages': mypackages,
'compressed': True
}
}
)