Enhance FfsLayout parsing. When specify a file for a section, then just use the file as section file.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1219 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
wuyizhong 2006-08-09 02:18:20 +00:00
parent a8a9de7cbb
commit 8a9783c1f3
1 changed files with 38 additions and 3 deletions

View File

@ -345,20 +345,55 @@ public class FfsProcess {
**/
private void dealSection(int mode, Document doc, Element root, XmlCursor cursor, Vector<String> list) {
String type = cursor.getAttributeText(new QName("SectionType"));
//
// Judge if file is specified? Yes, just use the file, else call Build Macro
// If fileName is null, means without FileNames specify in FPD file
//
String fileName = null;
cursor.push();
if (cursor.toFirstChild()) {
do {
if (cursor.getName().getLocalPart().equalsIgnoreCase("Filenames")) {
cursor.push();
if (cursor.toFirstChild()) {
do {
if (cursor.getName().getLocalPart().equalsIgnoreCase("Filename")) {
fileName = cursor.getTextValue();
}
} while (cursor.toNextSibling());
}
cursor.pop();
}
} while (cursor.toNextSibling());
}
cursor.pop();
if (fileName == null) {
list.addElement(type);
}
if (mode == MODE_GUID_DEFINED) {
//
// <input file="${DEST_DIR_OUTPUT}\Bds.pe32"/>
//
Element ele = doc.createElement("input");
if (fileName == null) {
ele.setAttribute("file", "${DEST_DIR_OUTPUT}" + File.separatorChar + basename + getSectionExt(type));
} else {
ele.setAttribute("file", "${PLATFORM_DIR}" + File.separatorChar + fileName);
}
root.appendChild(ele);
} else {
//
// <sectFile fileName= "..."/>
//
Element ele = doc.createElement("sectFile");
if (fileName == null) {
ele.setAttribute("fileName", "${DEST_DIR_OUTPUT}" + File.separatorChar + basename + getSectionExt(type));
} else {
ele.setAttribute("fileName", "${PLATFORM_DIR}" + File.separatorChar + fileName);
}
root.appendChild(ele);
}
}