From 3765a2437c943397659a4a10c81a426a083e0a44 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Sun, 24 Dec 2023 11:39:28 +0100 Subject: [PATCH] Fix description in revision codes --- classes/local/utils.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/local/utils.php b/classes/local/utils.php index 153ada8..736b320 100644 --- a/classes/local/utils.php +++ b/classes/local/utils.php @@ -64,7 +64,7 @@ class utils { * | A | 00-03 | PCB Revision | The PCB revision number | * | B | 04-11 | Model name | A, B, A+, B+, 2B, Alpha, CM1, unknown, 3B, Zero, | * | | | | CM3, unknown, Zero W, 3B+, 3A+, internal, CM3+, | - * | | | | 4B, Zero 2 W, 400, CM4, CM4S, 5 | + * | | | | 4B, Zero 2 W, 400, CM4, CM4S, internal, 5 | * | C | 12-15 | Processor | BCM2835, BCM2836, BCM2837, BCM2711, BCM2712 | * | D | 16-19 | Manufacturer | Sony UK, Egoman, Embest, Sony Japan, | * | | | | Embest, Stadium | @@ -96,7 +96,7 @@ public static function get_hardware_model() { $memorysizes = ['256MB', '512MB', '1GB', '2GB', '4GB', '8GB']; $models = ['A', 'B', 'A+', 'B+', '2B', 'Alpha', 'CM1', 'Unknown', '3B', 'Zero', 'CM3', 'Unknown', 'ZeroW', '3B+', '3A+', 'Internal use', - 'CM3+', '4B', 'Zero2W', '400', 'CM4', 'CM4S', 'Unknown', '5', ]; + 'CM3+', '4B', 'Zero2W', '400', 'CM4', 'CM4S', 'Internal use', '5', ]; $processors = ['BCM2835', 'BCM2836', 'BCM2837', 'BCM2711', 'BCM2712']; $manufacturers = ['Sony UK', 'Egoman', 'Embest', 'Sony Japan', 'Embest', 'Stadium', ];