From 6f1bab846b1c1f0088f08dc2987d4aed57cd6ed1 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 15 Jun 2017 22:58:48 +0200 Subject: [PATCH] Fix get_rpi_version --- addon/lib/rmupdate.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addon/lib/rmupdate.tcl b/addon/lib/rmupdate.tcl index 0924c43..121fd66 100644 --- a/addon/lib/rmupdate.tcl +++ b/addon/lib/rmupdate.tcl @@ -43,13 +43,13 @@ proc ::rmupdate::get_rpi_version {} { return "rpi0" } elseif {$revision == "a21041"} { # Pi 2 Model B - return "rpi2" + return "rpi3" } elseif {$revision == "0012"} { # Pi Model A+ - return "rpi1" + return "rpi0" } elseif {$revision == "0010"} { # Pi Model B+ - return "rpi1" + return "rpi0" } } }