[openwrt/openwrt] generic: platform/mikrotik: add board_revision tag

LEDE Commits lede-commits at lists.infradead.org
Wed Jul 8 10:07:26 EDT 2020


ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/a874c87f4c43438ac700dc68a1a7f750c7ad878f

commit a874c87f4c43438ac700dc68a1a7f750c7ad878f
Author: Thibaut VARÈNE <hacks at slashdirt.org>
AuthorDate: Sat Jun 6 15:46:08 2020 +0200

    generic: platform/mikrotik: add board_revision tag
    
    Tag was discovered exploring the hard_config of a "r2" board.
    
    Signed-off-by: Thibaut VARÈNE <hacks at slashdirt.org>
---
 .../linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c  | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c b/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c
index 992689605d..4559418de7 100644
--- a/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c
+++ b/target/linux/generic/files/drivers/platform/mikrotik/rb_hardconfig.c
@@ -39,7 +39,7 @@
 
 #include "routerboot.h"
 
-#define RB_HARDCONFIG_VER		"0.04"
+#define RB_HARDCONFIG_VER		"0.05"
 #define RB_HC_PR_PFX			"[rb_hardconfig] "
 
 /* ID values for hardware settings */
@@ -58,6 +58,7 @@
 #define RB_ID_BOARD_IDENTIFIER		0x17
 #define RB_ID_PRODUCT_NAME		0x21
 #define RB_ID_DEFCONF			0x26
+#define RB_ID_BOARD_REVISION		0x27
 
 /* Bit definitions for hardware options */
 #define RB_HW_OPT_NO_UART		BIT(0)
@@ -415,6 +416,10 @@ static struct hc_attr {
 		.tag_id = RB_ID_DEFCONF,
 		.tshow = routerboot_tag_show_string,
 		.kattr = __ATTR(defconf, S_IRUSR, hc_attr_show, NULL),
+	}, {
+		.tag_id = RB_ID_BOARD_REVISION,
+		.tshow = routerboot_tag_show_string,
+		.kattr = __ATTR(board_revision, S_IRUSR, hc_attr_show, NULL),
 	}
 };
 



More information about the lede-commits mailing list