diff mbox series

[3/3] conf/machine-sdk: declare qemu-usermode SDK_MACHINE_FEATURE

Message ID 20231221170159.1995650-3-ross.burton@arm.com
State Accepted, archived
Commit 12f92772c8ccf622fd353836c1172e15ee8c6857
Headers show
Series [1/3] nativesdk: ensure features don't get backfilled | expand

Commit Message

Ross Burton Dec. 21, 2023, 5:01 p.m. UTC
From: Ross Burton <ross.burton@arm.com>

All of our defined SDK machines (which are assumed to be Linux) support
qemu-user, so state this explicitly.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/conf/machine-sdk/aarch64.conf     | 2 ++
 meta/conf/machine-sdk/i586.conf        | 1 +
 meta/conf/machine-sdk/i686.conf        | 2 ++
 meta/conf/machine-sdk/loongarch64.conf | 2 ++
 meta/conf/machine-sdk/ppc64.conf       | 2 ++
 meta/conf/machine-sdk/ppc64le.conf     | 2 ++
 meta/conf/machine-sdk/riscv64.conf     | 2 ++
 meta/conf/machine-sdk/x86_64.conf      | 2 ++
 8 files changed, 15 insertions(+)
diff mbox series

Patch

diff --git a/meta/conf/machine-sdk/aarch64.conf b/meta/conf/machine-sdk/aarch64.conf
index 4a285cf6cb6..d2023e21744 100644
--- a/meta/conf/machine-sdk/aarch64.conf
+++ b/meta/conf/machine-sdk/aarch64.conf
@@ -1,2 +1,4 @@ 
 SDK_ARCH = "aarch64"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/i586.conf b/meta/conf/machine-sdk/i586.conf
index 05e826965ea..ccee3a4881b 100644
--- a/meta/conf/machine-sdk/i586.conf
+++ b/meta/conf/machine-sdk/i586.conf
@@ -2,3 +2,4 @@  SDK_ARCH = "i586"
 SDK_CC_ARCH = "-march=i586"
 ABIEXTENSION:class-nativesdk = ""
 
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/i686.conf b/meta/conf/machine-sdk/i686.conf
index 22f580e70f0..abb7a4bc1af 100644
--- a/meta/conf/machine-sdk/i686.conf
+++ b/meta/conf/machine-sdk/i686.conf
@@ -1,3 +1,5 @@ 
 SDK_ARCH = "i686"
 SDK_CC_ARCH = "-march=i686"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/loongarch64.conf b/meta/conf/machine-sdk/loongarch64.conf
index 40bf0039ea5..6bb4c7a4ea1 100644
--- a/meta/conf/machine-sdk/loongarch64.conf
+++ b/meta/conf/machine-sdk/loongarch64.conf
@@ -1,2 +1,4 @@ 
 SDK_ARCH = "loongarch64"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/ppc64.conf b/meta/conf/machine-sdk/ppc64.conf
index b41325dfe78..8ba3fccc677 100644
--- a/meta/conf/machine-sdk/ppc64.conf
+++ b/meta/conf/machine-sdk/ppc64.conf
@@ -1,2 +1,4 @@ 
 SDK_ARCH = "ppc64"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/ppc64le.conf b/meta/conf/machine-sdk/ppc64le.conf
index db1f863496e..3ee12faf572 100644
--- a/meta/conf/machine-sdk/ppc64le.conf
+++ b/meta/conf/machine-sdk/ppc64le.conf
@@ -1,2 +1,4 @@ 
 SDK_ARCH = "ppc64le"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/riscv64.conf b/meta/conf/machine-sdk/riscv64.conf
index 3f4a5af0af7..a43fe433fe6 100644
--- a/meta/conf/machine-sdk/riscv64.conf
+++ b/meta/conf/machine-sdk/riscv64.conf
@@ -1,2 +1,4 @@ 
 SDK_ARCH = "riscv64"
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"
diff --git a/meta/conf/machine-sdk/x86_64.conf b/meta/conf/machine-sdk/x86_64.conf
index 3396f95d69d..357dab0b882 100644
--- a/meta/conf/machine-sdk/x86_64.conf
+++ b/meta/conf/machine-sdk/x86_64.conf
@@ -2,3 +2,5 @@  SDK_ARCH = "x86_64"
 SDK_CC_ARCH = "-march=x86-64"
 ABIEXTENSION:class-crosssdk = ""
 ABIEXTENSION:class-nativesdk = ""
+
+SDK_MACHINE_FEATURES = "qemu-usermode"