Skip to content

Commit 2603bd8

Browse files
Sathish Kuttannashif
authored andcommitted
boards: intel_s1000_crb: print short filename
Print just the basename of the Input and Output filenames when creating the board specific image for Intel S1000 CRB Signed-off-by: Sathish Kuttan <[email protected]>
1 parent 47b781e commit 2603bd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

boards/xtensa/intel_s1000_crb/support/create_board_img.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ def main():
218218

219219
out_fp.close()
220220

221-
debug("Input %s = %ld bytes" % (args.in_file, in_file_size))
222-
debug("Output %s = %ld bytes" % (args.out_file, out_file_size))
221+
debug("Input %s = %ld bytes" % (os.path.basename(args.in_file), in_file_size))
222+
debug("Output %s = %ld bytes" % (os.path.basename(args.out_file), out_file_size))
223223

224224
if __name__ == "__main__":
225225
main()

0 commit comments

Comments
 (0)