public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Ajay Kadapathri" <ajay.kadapathri@intel.com>
To: devel@edk2.groups.io
Cc: Rebecca Cran <rebecca@bsdio.com>,
	Michael D Kinney <michael.d.kinney@intel.com>,
	Jayaprakash N <n.jayaprakash@intel.com>
Subject: [edk2-libc Patch 2/2] Added file header with copyright and license.
Date: Fri, 24 Mar 2023 13:56:33 +0530	[thread overview]
Message-ID: <20230324082633.706-3-ajay.kadapathri@intel.com> (raw)
In-Reply-To: <20230324082633.706-1-ajay.kadapathri@intel.com>

Cc: Rebecca Cran <rebecca@bsdio.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jayaprakash N <n.jayaprakash@intel.com>
Signed-off-by: Ajay Kadapathri <ajay.kadapathri@intel.com>
---
 .../Python-3.6.8/PyMod-3.6.8/Modules/cpu.nasm   | 17 ++++++++++++++++-
 .../Python-3.6.8/PyMod-3.6.8/Modules/cpu_gcc.s  | 17 ++++++++++++++++-
 .../PyMod-3.6.8/Modules/cpu_ia32.nasm           | 17 ++++++++++++++++-
 .../PyMod-3.6.8/Modules/cpu_ia32_gcc.s          | 16 ++++++++++++++++
 4 files changed, 64 insertions(+), 3 deletions(-)

diff --git a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu.nasm b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu.nasm
index 2d4f561..bd50015 100644
--- a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu.nasm
+++ b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu.nasm
@@ -1,4 +1,19 @@
-;TITLE   cpu.asm: Assembly code for the x64 resources
+;------------------------------------------------------------------------------
+;
+; Copyright (c) 2011 - 2023, Intel Corporation. All rights reserved.<BR>
+; SPDX-License-Identifier: BSD-2-Clause-Patent
+;
+; Module Name:
+;
+;   cpu.nasm
+;
+; Abstract:
+;
+;   swsmi function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
 
 DEFAULT REL
 SECTION .text
diff --git a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_gcc.s b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_gcc.s
index 5fc536e..5441691 100644
--- a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_gcc.s
+++ b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_gcc.s
@@ -1,4 +1,19 @@
-#  cpu_gcc.s: Assembly code for the x64 resources (GCC)
+#------------------------------------------------------------------------------
+#
+# Copyright (c) 2011 - 2023, Intel Corporation. All rights reserved.<BR>
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+# Module Name:
+#
+#   cpu_gcc.s
+#
+# Abstract:
+#
+#   swsmi function
+#
+# Notes:
+#
+#------------------------------------------------------------------------------
 
 .global _swsmi
 
diff --git a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32.nasm b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32.nasm
index 71e2e2c..790b923 100644
--- a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32.nasm
+++ b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32.nasm
@@ -1,4 +1,19 @@
-;TITLE   cpu.asm: Assembly code for the i386 resources
+;------------------------------------------------------------------------------
+;
+; Copyright (c) 2011 - 2023, Intel Corporation. All rights reserved.<BR>
+; SPDX-License-Identifier: BSD-2-Clause-Patent
+;
+; Module Name:
+;
+;   cpu_ia32.nasm
+;
+; Abstract:
+;
+;   swsmi function
+;
+; Notes:
+;
+;------------------------------------------------------------------------------
 
 SECTION .text
 
diff --git a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32_gcc.s b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32_gcc.s
index 77e307d..35e883b 100644
--- a/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32_gcc.s
+++ b/AppPkg/Applications/Python/Python-3.6.8/PyMod-3.6.8/Modules/cpu_ia32_gcc.s
@@ -1,3 +1,19 @@
+#------------------------------------------------------------------------------
+#
+# Copyright (c) 2011 - 2023, Intel Corporation. All rights reserved.<BR>
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+# Module Name:
+#
+#   cpu_ia32_gcc.s
+#
+# Abstract:
+#
+#   swsmi function
+#
+# Notes:
+#
+#------------------------------------------------------------------------------
 
 .global _swsmi
 
-- 
2.39.1.windows.1


  parent reply	other threads:[~2023-03-24  8:27 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-24  8:26 [edk2-libc Patch 0/2] Python/Python3.6.8: migration of edk2module from chipsec repo Ajay Kadapathri
2023-03-24  8:26 ` [edk2-libc Patch 1/2] " Ajay Kadapathri
2023-03-24  8:26 ` Ajay Kadapathri [this message]
2023-03-24 15:24   ` [edk2-libc Patch 2/2] Added file header with copyright and license Michael D Kinney
2023-03-27  4:57     ` Ajay Kadapathri

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230324082633.706-3-ajay.kadapathri@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox