binman: Move to absolute imports
[oweals/u-boot.git] / tools / binman / etype / u_boot_elf.py
index f83860dc0a84262c8faa5ad743daa535d8a0ffa5..5123b9dc1e9ba7f6bdc6dd03a34bb3149e151fe7 100644 (file)
@@ -5,10 +5,10 @@
 # Entry-type module for U-Boot ELF image
 #
 
-from entry import Entry
-from blob import Entry_blob
+from binman.entry import Entry
+from binman.etype.blob import Entry_blob
 
-import fdt_util
+from dtoc import fdt_util
 import tools
 
 class Entry_u_boot_elf(Entry_blob):