[v1.01] Added Allwinner SoCs (thanks #130!). Changed the match_soc algorithm; it should be more general now

This commit is contained in:
Dr-Noob
2021-12-03 16:14:42 +01:00
parent 4a9bbef086
commit a53fc41041
5 changed files with 101 additions and 6 deletions

View File

@@ -353,6 +353,8 @@ void choose_ascii_art(struct ascii* art, struct color** cs, struct terminal* ter
art->art = &logo_broadcom;
else if(art->vendor == SOC_VENDOR_APPLE)
art->art = &logo_apple;
else if(art->vendor == SOC_VENDOR_ALLWINNER)
art->art = &logo_allwinner;
else {
art->art = choose_ascii_art_aux(&logo_arm_l, &logo_arm, term, lf);
}