From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id A495EAC10D5 for ; Tue, 30 Jul 2024 16:19:03 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=8U/CQipPLz6zkY/oFeDVO82QKRN4jd++feNkTCfOegk=; 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:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Transfer-Encoding; s=20240206; t=1722356343; v=1; b=oCCBvgawa8qaa/corcwOcIj3b78dKcOoQtOoaYbRDQOg6nd9M5siViRctEuB5OLYh4HgQflF Ke5RzHYNDlQg8gF5tMiN0xh/zZ1FbOvkQVDQvxHbCXvEUho0rrNzcCn80nByPZ9qcg2d7OXKkgp gSJm3KzBAGbd1WmFpECBMhOTk3qaa7mNlmXwKoP40XVovYshgtNo0UUMf9hBO3ZnDUA5dsxyo2q JAV5ZnhLhRLORBHu4yADRRK4V1QPvGMjc2xJY+tlGiCS8jzUSL0Bxt7XOvi1w9m8c92Nahv6LBc LuOw+NmtV2Yl1p/ZEyLBOqYKtiVoIE48xraD4j+QyFUcQ== X-Received: by 127.0.0.2 with SMTP id FkvzYY7687511xz78XOGbfmo; Tue, 30 Jul 2024 09:19:02 -0700 X-Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.21]) by mx.groups.io with SMTP id smtpd.web10.21469.1722356340357519182 for ; Tue, 30 Jul 2024 09:19:01 -0700 X-CSE-ConnectionGUID: 3ixb0e/kQa28sR2GWbsbdw== X-CSE-MsgGUID: RWuQBX/xQrKbGl5Ri9mz7Q== X-IronPort-AV: E=McAfee;i="6700,10204,11149"; a="20134038" X-IronPort-AV: E=Sophos;i="6.09,248,1716274800"; d="scan'208";a="20134038" X-Received: from orviesa003.jf.intel.com ([10.64.159.143]) by orvoesa113.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jul 2024 09:19:00 -0700 X-CSE-ConnectionGUID: EpOUYqqHRSmaSop22MGcyg== X-CSE-MsgGUID: x+rrMlcbQKesTZ6pRVQP0A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.09,248,1716274800"; d="scan'208";a="59241459" X-Received: from njayapra-mobl.gar.corp.intel.com ([10.247.209.70]) by ORVIESA003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jul 2024 09:18:58 -0700 From: "Jayaprakash, N" To: devel@edk2.groups.io Cc: Jayaprakash N , Rebecca Cran , Michael D Kinney Subject: [edk2-devel] [edk2-libc Patch 1/1] edk2-libc: remove gitmodules file added through accidental commit Date: Tue, 30 Jul 2024 21:47:06 +0530 Message-ID: <20240730161846.1463-2-n.jayaprakash@intel.com> In-Reply-To: <20240730161846.1463-1-n.jayaprakash@intel.com> References: <20240730161846.1463-1-n.jayaprakash@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 Resent-Date: Tue, 30 Jul 2024 09:19:01 -0700 Resent-From: n.jayaprakash@intel.com Reply-To: devel@edk2.groups.io,n.jayaprakash@intel.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: AwlGwgZnHSHbVxv2yhgThC4ux7686176AA= Content-Transfer-Encoding: 8bit X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=oCCBvgaw; 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 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4822 Due to an accidental commit went into edk2-libc while experimenting with some inner-source repos lead to the addition of gitmodules file and a submodule. This commit is undoing this change by removing the gitmodules file and the submodule. Cc: Rebecca Cran Cc: Michael D Kinney Cc: Jayaprakash N Signed-off-by: Jayaprakash N --- .gitmodules | 3 --- AppPkg/CommonCode/SetupFiles | 1 - 2 files changed, 4 deletions(-) delete mode 100644 .gitmodules delete mode 160000 AppPkg/CommonCode/SetupFiles diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 04db1ef..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "AppPkg/CommonCode/SetupFiles"] - path = AppPkg/CommonCode/SetupFiles - url = https://github.com/intel-innersource/applications.validation.advancedsystemtools.products.setup-files.git diff --git a/AppPkg/CommonCode/SetupFiles b/AppPkg/CommonCode/SetupFiles deleted file mode 160000 index 8fa0030..0000000 --- a/AppPkg/CommonCode/SetupFiles +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 8fa00308a6e22df94094c47dc4d650b0466e78ea -- 2.45.1.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#120124): https://edk2.groups.io/g/devel/message/120124 Mute This Topic: https://groups.io/mt/107630356/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-