Skip to content

Commit b5c3762

Browse files
2 parents 0ba6c04 + 0cb585a commit b5c3762

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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

src/aero_kernel/src/userland/signals.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ impl Signals {
396396
/// * If `old_set` is not `None`, the previous value of the signal mask is
397397
/// stored in oldset.
398398
///
399-
/// * NOTE: If `set` is `None`, then the signal mask is unchanged (i.e., `how` is
399+
/// * If `set` is `None`, then the signal mask is unchanged (i.e., `how` is
400400
/// ignored), but the current value of the signal mask is returned in `old_set`
401401
/// (if it is not `None`).
402402
pub fn set_mask(&self, how: SigProcMask, set: Option<u64>, old_set: Option<&mut u64>) {

0 commit comments

Comments
 (0)