From 75b285a9699908edbcab1c081a7c53b7d3b3ca76 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Mon, 12 Nov 2012 18:08:41 +0100 Subject: [PATCH] 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 ;) --- src/system/boot/arch/arm/arch_cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/boot/arch/arm/arch_cpu.cpp b/src/system/boot/arch/arm/arch_cpu.cpp index 676191803d..028146b9b5 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; }