From 3fc3005ba5600bbbc1202e4313b61c99fe162fa7 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 29 Dec 2023 18:27:51 +0100 Subject: [PATCH] fix: Processor (#523) * fix: Processor --- src/entry.sh | 2 +- src/{cpu.sh => proc.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{cpu.sh => proc.sh} (100%) diff --git a/src/entry.sh b/src/entry.sh index 258e6df..54a34fa 100755 --- a/src/entry.sh +++ b/src/entry.sh @@ -11,7 +11,7 @@ cd /run . disk.sh # Initialize disks . display.sh # Initialize graphics . network.sh # Initialize network -. cpu.sh # Initialize processor +. proc.sh # Initialize processor . serial.sh # Initialize serialport . power.sh # Configure shutdown . config.sh # Configure arguments diff --git a/src/cpu.sh b/src/proc.sh similarity index 100% rename from src/cpu.sh rename to src/proc.sh