[PATCH v3 1/2] board: gateworks: venice: add additional levels for dtb name match
Tim Harvey
tharvey at gateworks.com
Thu Apr 14 22:00:51 CEST 2022
Gateworks produces many products from a single PCB with subloaded
components. Add an additional two levels of dtb name matching so that
for example a GW7400-A matches the dtb name of gw74xx.dtb
Signed-off-by: Tim Harvey <tharvey at gateworks.com>
---
v3: no changes - rebase
---
board/gateworks/venice/eeprom.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/board/gateworks/venice/eeprom.c b/board/gateworks/venice/eeprom.c
index 62b8125960c7..282d55f2ae30 100644
--- a/board/gateworks/venice/eeprom.c
+++ b/board/gateworks/venice/eeprom.c
@@ -259,8 +259,16 @@ const char *eeprom_get_dtb_name(int level, char *buf, int sz)
break;
case 2: /* don't care about PCB or BOM revision */
break;
+ case 3: /* don't care about last digit of model */
+ buf[strlen(buf) - 1] = 'x';
+ break;
+ case 4: /* don't care about last two digits of model */
+ buf[strlen(buf) - 1] = 'x';
+ buf[strlen(buf) - 2] = 'x';
+ break;
default:
return NULL;
+ break;
}
}
--
2.17.1
More information about the U-Boot
mailing list