Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LinuxBootImageGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def __compileDeviceTree(self,diagnosticOutput=True,searchPath =None):
'.dts file is found in the top folder!')
return None

outputfile = dts_file_name[:suffix_pos-3]+'.dtb'
outputfile = dts_file_name[:-4] + '.dtb'
if not singleFile:
# Check that the output file is not already available
for file in os.listdir(searchPath):
Expand Down