eb0718cddb
Generated from clean 866dfad0 + consolidated.patch state via diff. Two hunks for x86_64: comment on line 87 and info! on line 110. aarch64 (line 94) and riscv64 (line 100) — one hunk each. Verified: patch applies with --fuzz=0 on top of redbear-consolidated. Wired into kernel recipe after P8-msi.patch.
49 lines
1.8 KiB
Diff
49 lines
1.8 KiB
Diff
diff --git a/src/arch/aarch64/start.rs b/src/arch/aarch64/start.rs
|
|
index e1c8cfb4..65e3fe33 100644
|
|
--- a/src/arch/aarch64/start.rs
|
|
+++ b/src/arch/aarch64/start.rs
|
|
@@ -91,7 +91,7 @@
|
|
dtb::serial::init_early(dtb);
|
|
}
|
|
|
|
- info!("Redox OS starting...");
|
|
+ info!("RedBear OS starting...");
|
|
args.print();
|
|
|
|
// Initialize RMM
|
|
diff --git a/src/arch/riscv64/start.rs b/src/arch/riscv64/start.rs
|
|
index 2551968f..a825536a 100644
|
|
--- a/src/arch/riscv64/start.rs
|
|
+++ b/src/arch/riscv64/start.rs
|
|
@@ -97,7 +97,7 @@
|
|
init_early(dtb);
|
|
}
|
|
|
|
- info!("Redox OS starting...");
|
|
+ info!("RedBear OS starting...");
|
|
args.print();
|
|
|
|
if let Some(dtb) = &dtb {
|
|
diff --git a/src/arch/x86_shared/start.rs b/src/arch/x86_shared/start.rs
|
|
index f1dbb6b4..2e9f7311 100644
|
|
--- a/src/arch/x86_shared/start.rs
|
|
+++ b/src/arch/x86_shared/start.rs
|
|
@@ -84,7 +84,7 @@
|
|
unsafe {
|
|
// EARLY CANARY: write 'R' to COM1 before any kernel init.
|
|
// This proves the serial hardware works and the kernel reached Rust entry.
|
|
- // If this character appears but "Redox OS starting..." does not,
|
|
+ // If this character appears but "RedBear OS starting..." does not,
|
|
// the hang is in args_ptr.read(), serial::init(), or graphical_debug::init().
|
|
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|
|
{
|
|
@@ -107,7 +107,7 @@
|
|
core::arch::asm!("out dx, al", in("dx") 0x3F8u16, in("al") b'S', options(nostack, preserves_flags));
|
|
}
|
|
|
|
- info!("Redox OS starting...");
|
|
+ info!("RedBear OS starting...");
|
|
args.print();
|
|
|
|
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
|