From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 4CDFA1A1DEB for ; Wed, 28 Sep 2016 20:29:37 -0700 (PDT) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP; 28 Sep 2016 20:29:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,413,1470726000"; d="scan'208";a="174394602" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga004.fm.intel.com with ESMTP; 28 Sep 2016 20:29:36 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Date: Thu, 29 Sep 2016 11:29:29 +0800 Message-Id: <20160929032932.535452-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 03:29:37 -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