X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=tools%2Fbinman%2Fetype%2Fintel_fsp_t.py;h=0f196f0f1c12a26dfb4d2282c72eacdb1a0b8713;hb=7208396bbf1df1c7a85d263b7ff054e6b45d8240;hp=df0c5fbee0faa1c047487fa04a9cf21298e77779;hpb=5d3a21df6694ebd66d5c34c9d62a26edc7456fc7;p=platform%2Fkernel%2Fu-boot.git diff --git a/tools/binman/etype/intel_fsp_t.py b/tools/binman/etype/intel_fsp_t.py index df0c5fb..0f196f0 100644 --- a/tools/binman/etype/intel_fsp_t.py +++ b/tools/binman/etype/intel_fsp_t.py @@ -5,9 +5,10 @@ # Entry-type module for Intel Firmware Support Package binary blob (T section) # -from binman.etype.blob_ext import Entry_blob_ext +from binman.entry import Entry +from binman.etype.blob import Entry_blob -class Entry_intel_fsp_t(Entry_blob_ext): +class Entry_intel_fsp_t(Entry_blob): """Entry containing Intel Firmware Support Package (FSP) temp ram init Properties / Entry arguments: @@ -22,4 +23,4 @@ class Entry_intel_fsp_t(Entry_blob_ext): See README.x86 for information about x86 binary blobs. """ def __init__(self, section, etype, node): - super().__init__(section, etype, node) + Entry_blob.__init__(self, section, etype, node)