Skip to content

Commit 0cb585a

Browse files
committed
aero.py: Fix CI breakage caused by limine-bootloader/limine@6f8474c
1 parent eb7255d commit 0cb585a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aero.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def prepare_iso(args, kernel_bin, user_bins):
339339
shutil.copy(os.path.join('src', '.cargo', 'term_background.bmp'), iso_root)
340340
shutil.copy(os.path.join(limine_path, 'limine.sys'), iso_root)
341341
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)
343343

344344
initramfs_root = os.path.join(BUILD_DIR, 'initramfs_root')
345345

@@ -412,13 +412,13 @@ def cp(src, dest):
412412

413413
code, _, xorriso_stderr = run_command([
414414
'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',
416416
'--efi-boot-image', '--protective-msdos-label', iso_root, '-o', iso_path
417417
], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
418418

419419
if code != 0:
420420
print('Failed to create the ISO image')
421-
print(xorriso_stderr)
421+
print(xorriso_stderr.decode('utf-8'))
422422

423423
return None
424424

0 commit comments

Comments
 (0)