From e4de8e4073cdb45144414addea5641be980c993d Mon Sep 17 00:00:00 2001 From: Vishwanath Martur <64204611+vishwamartur@users.noreply.github.com> Date: Fri, 29 Nov 2024 22:17:29 +0530 Subject: [PATCH] Add support for Intel x86-64 Related to #950 Add support for Intel x86_64 architecture. * Add `conf/projects/intel-x86-64/config.conf` with machine, distro, and profile settings. * Add `conf/projects/intel-x86-64/layers.conf` with necessary layers for Intel x86_64 hardware. * Update `docs/yoe-projects.md` to include the new Intel x86_64 project in the list of supported projects. --- conf/projects/intel-x86-64/config.conf | 3 +++ conf/projects/intel-x86-64/layers.conf | 18 ++++++++++++++++++ docs/yoe-projects.md | 1 + 3 files changed, 22 insertions(+) create mode 100644 conf/projects/intel-x86-64/config.conf create mode 100644 conf/projects/intel-x86-64/layers.conf diff --git a/conf/projects/intel-x86-64/config.conf b/conf/projects/intel-x86-64/config.conf new file mode 100644 index 000000000..02d18cfc0 --- /dev/null +++ b/conf/projects/intel-x86-64/config.conf @@ -0,0 +1,3 @@ +MACHINE = "intel-x86-64" +DISTRO = "yoe" +YOE_PROFILE = "yoe-glibc-systemd-wayland" diff --git a/conf/projects/intel-x86-64/layers.conf b/conf/projects/intel-x86-64/layers.conf new file mode 100644 index 000000000..206310042 --- /dev/null +++ b/conf/projects/intel-x86-64/layers.conf @@ -0,0 +1,18 @@ +BBPATH = "${TOPDIR}" +BBFILES ?= "" + +BBLAYERS = "\ + ${TOPDIR}/sources/meta-yoe \ + ${TOPDIR}/sources/meta-intel \ + ${TOPDIR}/sources/meta-openembedded/meta-filesystems \ + ${TOPDIR}/sources/meta-openembedded/meta-gnome \ + ${TOPDIR}/sources/meta-openembedded/meta-initramfs \ + ${TOPDIR}/sources/meta-openembedded/meta-multimedia \ + ${TOPDIR}/sources/meta-openembedded/meta-networking \ + ${TOPDIR}/sources/meta-openembedded/meta-oe \ + ${TOPDIR}/sources/meta-openembedded/meta-perl \ + ${TOPDIR}/sources/meta-openembedded/meta-python \ + ${TOPDIR}/sources/meta-openembedded/meta-webserver \ + ${TOPDIR}/sources/meta-openembedded/meta-xfce \ + ${TOPDIR}/sources/poky/meta \ +" diff --git a/docs/yoe-projects.md b/docs/yoe-projects.md index 79f37d2bf..f575c88db 100644 --- a/docs/yoe-projects.md +++ b/docs/yoe-projects.md @@ -46,6 +46,7 @@ Currently these projects are supported. - rpi4-64 - var-som-mx8 - visionfive2 +- intel-x86-64 ## Converting a project