diff options
author | 2016-05-19 09:39:06 +0000 | |
---|---|---|
committer | 2016-05-19 09:39:06 +0000 | |
commit | 712949106f0e96dd684a100fd8cf81418cd9fe03 (patch) | |
tree | df813a440e27253a26ece51d22d0511cfa26fa52 | |
parent | Use OF_is_compatible(9). Simplifies the code and should make pci within (diff) | |
download | wireguard-openbsd-712949106f0e96dd684a100fd8cf81418cd9fe03.tar.xz wireguard-openbsd-712949106f0e96dd684a100fd8cf81418cd9fe03.zip |
Match compatible strings for utilite which identifies as "cm-fx6" in
fdt/u-boot, and nitrogen6x which shares a board id with sabre lite but
has a different compatible string.
ok patrick@ kettenis@
-rw-r--r-- | sys/arch/armv7/stand/efiboot/efiboot.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sys/arch/armv7/stand/efiboot/efiboot.c b/sys/arch/armv7/stand/efiboot/efiboot.c index be0416509cc..15a4672e19d 100644 --- a/sys/arch/armv7/stand/efiboot/efiboot.c +++ b/sys/arch/armv7/stand/efiboot/efiboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: efiboot.c,v 1.6 2016/05/17 22:41:20 kettenis Exp $ */ +/* $OpenBSD: efiboot.c,v 1.7 2016/05/19 09:39:06 jsg Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net> @@ -225,14 +225,16 @@ struct board_id { }; struct board_id board_id_table[] = { - { "phytec,imx6q-pbab01", 3529 }, - { "fsl,imx6q-sabrelite", 3769 }, - { "fsl,imx6q-sabresd", 3980 }, - { "kosagi,imx6q-novena", 4269 }, - { "solidrun,hummingboard/q", 4773 }, - { "solidrun,cubox-i/q", 4821 }, - { "wand,imx6q-wandboard", 4412 }, - { "udoo,imx6q-udoo", 4800 }, + { "boundary,imx6q-nitrogen6_max", 3769 }, + { "boundary,imx6q-nitrogen6x", 3769 }, + { "compulab,cm-fx6", 4273 }, + { "fsl,imx6q-sabrelite", 3769 }, + { "fsl,imx6q-sabresd", 3980 }, + { "kosagi,imx6q-novena", 4269 }, + { "solidrun,cubox-i/q", 4821 }, + { "solidrun,hummingboard/q", 4773 }, + { "udoo,imx6q-udoo", 4800 }, + { "wand,imx6q-wandboard", 4412 }, }; static EFI_GUID fdt_guid = FDT_TABLE_GUID; |