From 2fcc76938824cd5b4a7b7e41f2129cbcf11de3ca Mon Sep 17 00:00:00 2001 From: Jethro Beekman Date: Wed, 4 Feb 2015 14:33:01 -0800 Subject: [PATCH 1/3] Updated gitignore to ignore Linux build intermediates --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 8ba7c83..0ffcd2b 100644 --- a/.gitignore +++ b/.gitignore @@ -224,3 +224,13 @@ pip-log.txt #Mr Developer .mr.developer.cfg + +############# +## qmake / make +############# +*.o +Makefile +UEFIExtract/UEFIExtract +UEFIFind/UEFIFind +UEFIPatch/UEFIPatch +UEFITool From f1effc075378fa09664b31388b015e9b9d3221c4 Mon Sep 17 00:00:00 2001 From: Jethro Beekman Date: Wed, 4 Feb 2015 14:41:35 -0800 Subject: [PATCH 2/3] Missing colon in info output --- ffsengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffsengine.cpp b/ffsengine.cpp index 1c7e9a6..9b4d290 100644 --- a/ffsengine.cpp +++ b/ffsengine.cpp @@ -1317,7 +1317,7 @@ UINT8 FfsEngine::parseSection(const QByteArray & section, QModelIndex & index, c // Get info name = guidToQString(guidDefinedSectionHeader->SectionDefinitionGuid); - info = tr("Section GUID: %1h\nType %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") + info = tr("Section GUID: %1h\nType: %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") .arg(name) .hexarg2(sectionHeader->Type, 2) .hexarg(section.size()).arg(section.size()) From 9a1030613d2c6e3846bbffa19d60c2d7dfa27e0d Mon Sep 17 00:00:00 2001 From: Jethro Beekman Date: Wed, 4 Feb 2015 19:33:36 -0800 Subject: [PATCH 3/3] Consistently format GUIDs in info --- ffsengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffsengine.cpp b/ffsengine.cpp index 9b4d290..f67906f 100644 --- a/ffsengine.cpp +++ b/ffsengine.cpp @@ -1317,7 +1317,7 @@ UINT8 FfsEngine::parseSection(const QByteArray & section, QModelIndex & index, c // Get info name = guidToQString(guidDefinedSectionHeader->SectionDefinitionGuid); - info = tr("Section GUID: %1h\nType: %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") + info = tr("Section GUID: %1\nType: %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") .arg(name) .hexarg2(sectionHeader->Type, 2) .hexarg(section.size()).arg(section.size())