Skip to content

Commit

Permalink
generic: platform/mikrotik: add board_revision tag
Browse files Browse the repository at this point in the history
Tag was discovered exploring the hard_config of a "r2" board.

Signed-off-by: Thibaut VARÈNE <hacks@slashdirt.org>
  • Loading branch information
f00b4r0 authored and ynezz committed Jul 8, 2020
1 parent 0217a9b commit a874c87
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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)
Expand Down Expand Up @@ -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),
}
};

Expand Down

0 comments on commit a874c87

Please sign in to comment.