Commit a8907905 authored by Tomasz Bursztyka's avatar Tomasz Bursztyka Committed by Anas Nashif
Browse files

boards/x86: Give proper board compatible names



These compatible describe the vendor/board, not the cpu/model.

Signed-off-by: default avatarTomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
parent 32638183
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

/ {
	model = "ACRN";
	compatible = "intel,ia32";
	compatible = "acrn";

	aliases {
		uart-0 = &uart0;
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

/ {
	model = "ehl_crb";
	compatible = "intel,elkhart_lake";
	compatible = "intel,elkhart_lake_crb";

	chosen {
		zephyr,sram = &dram0;
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

/ {
	model = "ehl_crb";
	compatible = "intel,elkhart_lake";
	compatible = "intel,elkhart_lake_crb_sbl";

	chosen {
		zephyr,sram = &dram0;
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

/ {
	model = "minnowboard";
	compatible = "intel,atom";
	compatible = "minnowboard,minnowboard";

	aliases {
		uart-0 = &uart0;
+2 −2
Original line number Diff line number Diff line
@@ -15,8 +15,8 @@
#include <ia32.dtsi>

/ {
	model = "QEMU X86";
	compatible = "intel,ia32";
	model = "QEMU X86 emulator";
	compatible = "qemu,x86_emulator";

	flash0: flash@500000 {
		compatible = "soc-nv-flash";
Loading