From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 159BB1A1DEB for ; Wed, 28 Sep 2016 19:41:43 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP; 28 Sep 2016 19:41:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,413,1470726000"; d="scan'208";a="174382933" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga004.fm.intel.com with ESMTP; 28 Sep 2016 19:41:42 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Date: Thu, 29 Sep 2016 10:41:36 +0800 Message-Id: <20160929024139.528832-1-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 Subject: [PATCH 0/3] Remove ImageDecoderLib and BmpImageDecoderLib X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2016 02:41:43 -0000 The two libraries are created to support old BootLogoLib to decode the images. Due to the new BootLogoLib starts using HiiImageEx interfaces, the two libraries are not needed. Ruiyu Ni (3): MdeModulePkg/ImageDecoderLib: Retire it due to new BootLogoLib MdeModulePkg/BmpImageDecoderLib: Retire it due to new BootLogoLib MdeModulePkg: Remove ImageDecoderLib and BmpImageDecoderLib .../BmpImageDecoderLib/BmpImageDecoderLib.c | 272 --------------------- .../BmpImageDecoderLib/BmpImageDecoderLib.inf | 43 ---- .../BmpImageDecoderLib/BmpImageDecoderLib.uni | 26 -- .../Library/ImageDecoderLib/ImageDecoderLib.c | 121 --------- .../Library/ImageDecoderLib/ImageDecoderLib.inf | 43 ---- .../Library/ImageDecoderLib/ImageDecoderLib.uni | 26 -- MdeModulePkg/MdeModulePkg.dec | 4 - MdeModulePkg/MdeModulePkg.dsc | 3 - 8 files changed, 538 deletions(-) delete mode 100644 MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.c delete mode 100644 MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.inf delete mode 100644 MdeModulePkg/Library/BmpImageDecoderLib/BmpImageDecoderLib.uni delete mode 100644 MdeModulePkg/Library/ImageDecoderLib/ImageDecoderLib.c delete mode 100644 MdeModulePkg/Library/ImageDecoderLib/ImageDecoderLib.inf delete mode 100644 MdeModulePkg/Library/ImageDecoderLib/ImageDecoderLib.uni -- 2.9.0.windows.1