@@ -339,7 +339,7 @@ def prepare_iso(args, kernel_bin, user_bins):
339
339
shutil .copy (os .path .join ('src' , '.cargo' , 'term_background.bmp' ), iso_root )
340
340
shutil .copy (os .path .join (limine_path , 'limine.sys' ), iso_root )
341
341
shutil .copy (os .path .join (limine_path , 'limine-cd.bin' ), iso_root )
342
- shutil .copy (os .path .join (limine_path , 'limine-eltorito -efi.bin' ), iso_root )
342
+ shutil .copy (os .path .join (limine_path , 'limine-cd -efi.bin' ), iso_root )
343
343
344
344
initramfs_root = os .path .join (BUILD_DIR , 'initramfs_root' )
345
345
@@ -412,13 +412,13 @@ def cp(src, dest):
412
412
413
413
code , _ , xorriso_stderr = run_command ([
414
414
'xorriso' , '-as' , 'mkisofs' , '-b' , 'limine-cd.bin' , '-no-emul-boot' , '-boot-load-size' , '4' ,
415
- '-boot-info-table' , '--efi-boot' , 'limine-eltorito -efi.bin' , '-efi-boot-part' ,
415
+ '-boot-info-table' , '--efi-boot' , 'limine-cd -efi.bin' , '-efi-boot-part' ,
416
416
'--efi-boot-image' , '--protective-msdos-label' , iso_root , '-o' , iso_path
417
417
], stdout = subprocess .PIPE , stderr = subprocess .PIPE )
418
418
419
419
if code != 0 :
420
420
print ('Failed to create the ISO image' )
421
- print (xorriso_stderr )
421
+ print (xorriso_stderr . decode ( 'utf-8' ) )
422
422
423
423
return None
424
424
0 commit comments