From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id 56D27AC0CC5 for ; Sat, 18 Nov 2023 06:37:05 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=gmc36tZb0dggP/8KOcbWiduIRXZMcrwVfq2kSUfSUVc=; c=relaxed/simple; d=groups.io; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References:MIME-Version:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20140610; t=1700289423; v=1; b=bVXux25dyLLnKRR83d1jcq4bC9dPPYN6PSX/7GCe055stkZL1lQGiR06EpEhRH6OrkXxMOUK wmd0iC7QAxTb6PZqDd2Rd7GuKOzsoQ5jtEP6ysofzYINCsaQoK1n7moy+zb68+h2QsmieWLPO+g FKPpQScWr92US5dXZl6q285E= X-Received: by 127.0.0.2 with SMTP id KxqwYY7687511xYvFuaGq0Qn; Fri, 17 Nov 2023 22:37:03 -0800 X-Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web10.4487.1700289420573124309 for ; Fri, 17 Nov 2023 22:37:01 -0800 X-IronPort-AV: E=McAfee;i="6600,9927,10897"; a="371587470" X-IronPort-AV: E=Sophos;i="6.04,207,1695711600"; d="scan'208";a="371587470" X-Received: from fmviesa001.fm.intel.com ([10.60.135.141]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2023 22:37:00 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.04,207,1695711600"; d="scan'208";a="14109004" X-Received: from nldesimo-desk.amr.corp.intel.com ([10.241.240.67]) by smtpauth.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2023 22:37:00 -0800 From: "Nate DeSimone" To: devel@edk2.groups.io Cc: Chasel Chiu Subject: [edk2-devel] [edk2-platforms][PATCH v1] WhitleyOpenBoardPkg: Replace Python Interpreter Name Date: Fri, 17 Nov 2023 22:36:29 -0800 Message-Id: <20231118063629.1397-3-nathaniel.l.desimone@intel.com> In-Reply-To: <20231118063629.1397-1-nathaniel.l.desimone@intel.com> References: <20231118063629.1397-1-nathaniel.l.desimone@intel.com> MIME-Version: 1.0 Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,nathaniel.l.desimone@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: Oyr62a1x3dBcrULsp54XTp7gx7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=bVXux25d; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=intel.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io Removes the assumption that the python interpreter will have the name python. Cc: Chasel Chiu Signed-off-by: Nate DeSimone +# Copyright (c) 2021 - 2023, Intel Corporation. All rights reserved.
# Copyright (c) 2022, American Megatrends International LLC.
# SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -107,7 +107,7 @@ def pre_build_ex(config, functions): if not os.path.exists(out_file_dir): os.mkdir(out_file_dir) - command = ["python", + command = [sys.executable, os.path.join(config["MIN_PACKAGE_TOOLS"], "AmlGenOffset", "AmlGenOffset.py"), "-d", "--aml_filter", config["AML_FILTER"], "-o", out_file_path, diff --git a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/build_board.py b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/build_board.py index ccf7a8c55a..61b893686c 100644 --- a/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/build_board.py +++ b/Platform/Intel/WhitleyOpenBoardPkg/JunctionCity/build_board.py @@ -2,7 +2,7 @@ # Extensions for building JunctionCity using build_bios.py # # -# Copyright (c) 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2021 - 2023, Intel Corporation. All rights reserved.
# Copyright (c) 2021, American Megatrends International LLC.
# SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -107,7 +107,7 @@ def pre_build_ex(config, functions): if not os.path.exists(out_file_dir): os.mkdir(out_file_dir) - command = ["python", + command = [sys.executable, os.path.join(config["MIN_PACKAGE_TOOLS"], "AmlGenOffset", "AmlGenOffset.py"), "-d", "--aml_filter", config["AML_FILTER"], "-o", out_file_path, diff --git a/Platform/Intel/WhitleyOpenBoardPkg/WilsonCityRvp/build_board.py b/Platform/Intel/WhitleyOpenBoardPkg/WilsonCityRvp/build_board.py index e2d32d3e13..8d62dd43b8 100644 --- a/Platform/Intel/WhitleyOpenBoardPkg/WilsonCityRvp/build_board.py +++ b/Platform/Intel/WhitleyOpenBoardPkg/WilsonCityRvp/build_board.py @@ -1,7 +1,7 @@ # @ build_board.py # Extensions for building WilsonCityRvp using build_bios.py # -# Copyright (c) 2021, Intel Corporation. All rights reserved.
+# Copyright (c) 2021 - 2023, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent # @@ -105,7 +105,7 @@ def pre_build_ex(config, functions): if not os.path.exists(out_file_dir): os.mkdir(out_file_dir) - command = ["python", + command = [sys.executable, os.path.join(config["MIN_PACKAGE_TOOLS"], "AmlGenOffset", "AmlGenOffset.py"), "-d", "--aml_filter", config["AML_FILTER"], "-o", out_file_path, -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#111424): https://edk2.groups.io/g/devel/message/111424 Mute This Topic: https://groups.io/mt/102667306/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-