summaryrefslogtreecommitdiffhomepage
path: root/src/coreboot-start.c
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-10 10:49:10 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2025-02-10 10:49:10 +0100
commit427116dc068bfe171a72d41e714dac22db3b0e3b (patch)
tree5cc9a639581a6cf5be549c550f5c26ad4c088ad3 /src/coreboot-start.c
parentab647b79af4044c2ff916185e46354a09730f87e (diff)
ADD: tweaks.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'src/coreboot-start.c')
-rw-r--r--src/coreboot-start.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/coreboot-start.c b/src/coreboot-start.c
index 295ffee..46453ca 100644
--- a/src/coreboot-start.c
+++ b/src/coreboot-start.c
@@ -46,28 +46,28 @@ void mp_start_exec(void)
// let the hart 0 init our stuff.
if (hart == 1)
{
- mp_put_string("TQ> Welcome to CoreBoot, (c) Amlal EL Mahrouss. Built the ");
+ mp_put_string("CB> Welcome to CoreBoot, (c) Amlal EL Mahrouss. Built the ");
mp_put_string(__DATE__);
mp_put_string("\r\r\n");
#ifdef __COMPILE_POWERPC__
- mp_put_string("TQ> CPU: PowerPC 64-bit Based SoC.\r\r\n");
+ mp_put_string("CB> CPU: PowerPC 64-bit Based SoC.\r\r\n");
#endif // __COMPILE_POWERPC__
#ifdef __COMPILE_AMD64__
- mp_put_string("TQ> CPU: x64 Based SoC.\r\r\n");
+ mp_put_string("CB> CPU: x64 Based SoC.\r\r\n");
#endif // __COMPILE_AMD64__
#ifdef __COMPILE_ARM64__
- mp_put_string("TQ> CPU: AArch64 Based SoC.\r\r\n");
+ mp_put_string("CB> CPU: AArch64 Based SoC.\r\r\n");
#endif // __COMPILE_ARM64__
#ifdef __COMPILE_ARM32__
- mp_put_string("TQ> CPU: AArch32 Based SoC.\r\r\n");
+ mp_put_string("CB> CPU: AArch32 Based SoC.\r\r\n");
#endif // __COMPILE_ARM64__
#ifdef __COMPILE_RISCV__
- mp_put_string("TQ> CPU: RV64 Based SoC.\r\r\n");
+ mp_put_string("CB> CPU: RV64 Based SoC.\r\r\n");
#endif // __COMPILE_RISCV__
}
@@ -89,19 +89,19 @@ void mp_start_exec(void)
{
if (hart == 1)
{
- mp_put_string("TQ> Can't Boot the Stage2, invalid signature. (CB0003)\r\n");
+ mp_put_string("CB> Can't Boot the Stage2, invalid signature. (CB0003)\r\n");
}
}
else
{
if (hart == 1)
{
- mp_put_string("TQ> Executing Stage2: ");
+ mp_put_string("CB> Executing Stage2: ");
mp_put_string((const char*)boot_hdr->h_name);
mp_put_char('\r');
mp_put_char('\n');
- // printf("TQ> address: %x\n", boot_hdr->h_start_address);
+ // printf("CB> address: %x\n", boot_hdr->h_start_address);
}
if (boot_hdr->h_start_address != 0)
@@ -110,14 +110,14 @@ void mp_start_exec(void)
mp_start_context(boot_hdr->h_start_address);
}
- mp_put_string("TQ> Stage2 has returned? (CB0002)\r\n");
+ mp_put_string("CB> Stage2 has returned? (CB0002)\r\n");
}
}
else
{
if (hart == 1)
{
- mp_put_string("TQ> Can't boot to Stage2. (CB0001)\r\n");
+ mp_put_string("CB> Can't boot to Stage2. (CB0001)\r\n");
}
}