From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web10.7422.1684931339636052825 for ; Wed, 24 May 2023 05:28:59 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=XUcpG3XN; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: ray.ni@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1684931339; x=1716467339; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=t4fsJt6jMayhiAysiTtT2wOKmeTmdVFnUP99DHaO8xE=; b=XUcpG3XNoYlk1ebnJcG491JbdaGvPGDqWtd5Hwkl5N3L91VTX33QyTNF lrE93Gd2ATz42w76lhmTF9Hki43LHd4fgRQddOA8wPSWqDc7ArjnUseBT Ml1k+kjaKSk5xN6yegOlsMEQoLUZdalJ1UupMNrBC0YpCFwbKBKb4fJ5g nzNRi7xQAr/CllUxRuY+oS6subkZRRPD8JVo1mR/v+uXuK7zTNTFU2aQs htgEP8QY0OhazZU9w6x5/I5wZ0w095FnAInwJwByguBUyGmrdva9O1cYl 7JdoiLQgHJRnNbsW2JYuKwu8Y6rVwp/7FHj9uFvrV9MKKDtSGCoWYFLMK Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10720"; a="419259480" X-IronPort-AV: E=Sophos;i="6.00,189,1681196400"; d="scan'208";a="419259480" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 May 2023 05:28:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10720"; a="704328068" X-IronPort-AV: E=Sophos;i="6.00,189,1681196400"; d="scan'208";a="704328068" Received: from shwdeopenlab706.ccr.corp.intel.com ([10.239.55.95]) by orsmga002.jf.intel.com with ESMTP; 24 May 2023 05:28:58 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Subject: [PATCH 0/6] Fine tune SimicsOpenBoardPkg Date: Wed, 24 May 2023 20:28:46 +0800 Message-Id: <20230524122852.2047-1-ray.ni@intel.com> X-Mailer: git-send-email 2.39.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Ray Ni (6): SimicsOpenBoardPkg: Remove un-used PlatformBootManagerLib SimicsOpenBoardPkg: Remove logic that loads variable from disk file SimicsOpenBoardPkg: Enable serial terminal MinPlatform/build_bios.py: Support performance enabled build SimicsOpenBoardPkg: Add "dp" command in performance build SimicsOpenBoardPkg: Disable DriverBindingSupport perf logging .../BoardX58Ich10/OpenBoardPkg.dsc | 10 +- .../BoardX58Ich10/OpenBoardPkg.fdf | 4 +- .../BoardX58Ich10/OpenBoardPkgPcd.dsc | 12 +- .../Include/Library/SerializeVariablesLib.h | 224 --- .../Library/BoardBdsHookLib/BoardBdsHookLib.c | 180 +- .../BoardBdsHookLib/BoardBdsHookLib.inf | 3 - .../Library/NvVarsFileLib/FsAccess.c | 507 ------ .../Library/NvVarsFileLib/NvVarsFileLib.c | 77 - .../Library/NvVarsFileLib/NvVarsFileLib.h | 55 - .../Library/NvVarsFileLib/NvVarsFileLib.inf | 53 - .../PlatformBootManagerLib/BdsPlatform.c | 1532 ----------------- .../PlatformBootManagerLib/BdsPlatform.h | 172 -- .../PlatformBootManagerLib.inf | 72 - .../PlatformBootManagerLib/PlatformData.c | 35 - .../SerializeVariablesLib.c | 869 ---------- .../SerializeVariablesLib.h | 33 - .../SerializeVariablesLib.inf | 36 - .../Intel/SimicsOpenBoardPkg/OpenBoardPkg.dec | 3 - Platform/Intel/build_bios.py | 6 +- 19 files changed, 50 insertions(+), 3833 deletions(-) delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Include/Library/SerializeVariablesLib.h delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/NvVarsFileLib/FsAccess.c delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/NvVarsFileLib/NvVarsFileLib.c delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/NvVarsFileLib/NvVarsFileLib.h delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/NvVarsFileLib/NvVarsFileLib.inf delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/PlatformBootManagerLib/BdsPlatform.c delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/PlatformBootManagerLib/BdsPlatform.h delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/PlatformBootManagerLib/PlatformData.c delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/SerializeVariablesLib/SerializeVariablesLib.c delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/SerializeVariablesLib/SerializeVariablesLib.h delete mode 100644 Platform/Intel/SimicsOpenBoardPkg/Library/SerializeVariablesLib/SerializeVariablesLib.inf -- 2.39.1.windows.1