mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-23 00:18:23 +08:00
63088afd87
+ FFSv3 support with large files and large sections + proper names for Flash Descriptor v2 regions (#89) + better alignment calculations (#96) + improved NVRAM parser + post IBB hash support for Boot Guard + bugfixes + companion tool updated
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
/* uefidump_main.cpp
|
|
|
|
Copyright (c) 2017, LongSoft. All rights reserved.
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*/
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
#include "uefidump.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
if (argc > 1) {
|
|
std::ifstream inputFile;
|
|
inputFile.open(argv[1], std::ios::in | std::ios::binary);
|
|
std::vector<char> buffer(std::istreambuf_iterator<char>(inputFile),
|
|
(std::istreambuf_iterator<char>()));
|
|
inputFile.close();
|
|
|
|
UEFIDumper uefidumper;
|
|
return (uefidumper.dump(buffer, UString(argv[1])) != U_SUCCESS);
|
|
}
|
|
|
|
std::cout << "UEFIDump 0.1.6" << std::endl << std::endl
|
|
<< "Usage: UEFIDump imagefile" << std::endl;
|
|
return 0;
|
|
}
|