X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;ds=sidebyside;f=Tools%2FSource%2FFrameworkTasks%2Forg%2Ftianocore%2Fframework%2Ftasks%2FEfiRomTask.java;h=0eba56ea839bd7480bcb06879070bc0811e377ec;hb=82810f3b0f9ba49ed2d9f96c5b53e90dd7e66d88;hp=e54fd06d6797bfe6b2d380a407f66019d30f2114;hpb=ff225cbbae618da0eb4ad54064a40e7dd4e343df;p=mirror_edk2.git diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java index e54fd06d67..0eba56ea83 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java @@ -137,7 +137,7 @@ public class EfiRomTask extends Task implements EfiDefine { argList.add("-b"); Iterator binList = this.binaryFileList.iterator(); while (binList.hasNext()){ - argList.add(((Input)binList.next()).getFile()); + argList.addAll(((Input)binList.next()).getNameList()); } } @@ -148,7 +148,7 @@ public class EfiRomTask extends Task implements EfiDefine { argList.add("-e"); Iterator pe32List = this.pe32FileList.iterator(); while (pe32List.hasNext()){ - argList.add(((Input)pe32List.next()).getFile()); + argList.addAll(((Input)pe32List.next()).getNameList()); } } @@ -159,7 +159,7 @@ public class EfiRomTask extends Task implements EfiDefine { argList.add("-ec"); Iterator pe32ComprList = this.pe32ComprFileList.iterator(); while (pe32ComprList.hasNext()){ - argList.add(((Input)pe32ComprList.next()).getFile()); + argList.addAll(((Input)pe32ComprList.next()).getNameList()); } }