From 4564cdc8500540a9dbef25f5ce5e03e09a2d5415 Mon Sep 17 00:00:00 2001 From: Kroese Date: Fri, 29 Dec 2023 18:31:51 +0100 Subject: [PATCH] fix: Processor (#286) * 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 d9cd5a4..b608852 100755 --- a/src/entry.sh +++ b/src/entry.sh @@ -12,7 +12,7 @@ cd /run . display.sh # Initialize graphics . network.sh # Initialize network . boot.sh # Configure boot -. cpu.sh # Initialize processor +. proc.sh # Initialize processor . config.sh # Configure arguments trap - ERR diff --git a/src/cpu.sh b/src/proc.sh similarity index 100% rename from src/cpu.sh rename to src/proc.sh