hrev44818 adds 1 changeset to branch 'master' old head: 22fc56ce8c63d7b52d6bf2f8e0483413e57e62cd new head: 75b285a9699908edbcab1c081a7c53b7d3b3ca76 ---------------------------------------------------------------------------- 75b285a: ARM: Fix incorrect panic message. As noted during BeGeistert and today again by kallisti5, there's a Pentium reference in the ARM bootloader code. Correct the message to something more appropriate.... Thanks to Rene for the suggestion ;) [ Ithamar R. Adema <ithamar@xxxxxxxxxxxxxxxxxxx> ] ---------------------------------------------------------------------------- Revision: hrev44818 Commit: 75b285a9699908edbcab1c081a7c53b7d3b3ca76 URL: http://cgit.haiku-os.org/haiku/commit/?id=75b285a Author: Ithamar R. Adema <ithamar@xxxxxxxxxxxxxxxxxxx> Date: Mon Nov 12 17:08:41 2012 UTC ---------------------------------------------------------------------------- 1 file changed, 1 insertion(+), 1 deletion(-) src/system/boot/arch/arm/arch_cpu.cpp | 2 +- ---------------------------------------------------------------------------- diff --git a/src/system/boot/arch/arm/arch_cpu.cpp b/src/system/boot/arch/arm/arch_cpu.cpp index 6761918..028146b 100644 --- a/src/system/boot/arch/arm/arch_cpu.cpp +++ b/src/system/boot/arch/arm/arch_cpu.cpp @@ -70,7 +70,7 @@ boot_arch_cpu_init(void) status_t err = check_cpu_features(); if (err != B_OK) { - panic("You need a Pentium or higher in order to boot!\n"); + panic("Retire your old Acorn and get something modern to boot!\n"); return err; }