1 // /** @file 2 // BIOS Block IO module. 3 // 4 // This is the UEFI driver to thunk legacy BIOS int13 interface into UEFI block IO interface. 5 // Once connected it installs EfiBlockIoProtocol on top of legacy BIOS int13. 6 // 7 // Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved.<BR> 8 // 9 // This program and the accompanying materials 10 // are licensed and made available under the terms and conditions 11 // of the BSD License which accompanies this distribution. The 12 // full text of the license may be found at 13 // http://opensource.org/licenses/bsd-license.php 14 // 15 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 16 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 17 // 18 // **/ 19 20 21 #string STR_MODULE_ABSTRACT #language en-US "BIOS Block IO module" 22 23 #string STR_MODULE_DESCRIPTION #language en-US "This is the UEFI driver to thunk legacy BIOS int13 interface into the UEFI block IO interface. Once connected, it installs EfiBlockIoProtocol on top of legacy BIOS int13." 24 25