From: "Alexandre Belloni" <alexandre.belloni@bootlin.com>
To: Jon Mason <jdmason@kudzu.us>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH 2/3] yocto-bsp: update machine confs with new tune locations
Date: Fri, 13 Aug 2021 10:19:02 +0200 [thread overview]
Message-ID: <YRYq9lzl6dzzz5xr@piout.net> (raw)
In-Reply-To: <20210810214503.17791-3-jdmason@kudzu.us>
Hello Jon,
This is the fallout of this series:
https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/2442
It seems you got it mostly right but forgot to update the path to qemuboot-x86.inc
On 10/08/2021 17:45:02-0400, Jon Mason wrote:
> Signed-off-by: Jon Mason <jdmason@kudzu.us>
> ---
> meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 2 +-
> meta-yocto-bsp/conf/machine/edgerouter.conf | 2 +-
> meta-yocto-bsp/conf/machine/genericx86-64.conf | 2 +-
> meta-yocto-bsp/conf/machine/genericx86.conf | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> index 65c79fd34db6..eb4e0fb1b157 100644
> --- a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf
> @@ -12,7 +12,7 @@ MACHINE_EXTRA_RRECOMMENDS = "kernel-modules kernel-devicetree"
> EXTRA_IMAGEDEPENDS += "virtual/bootloader"
>
> DEFAULTTUNE ?= "cortexa8hf-neon"
> -include conf/machine/include/tune-cortexa8.inc
> +include conf/machine/include/arm/tune-cortexa8.inc
>
> IMAGE_FSTYPES += "tar.bz2 jffs2 wic wic.bmap"
> EXTRA_IMAGECMD:jffs2 = "-lnp "
> diff --git a/meta-yocto-bsp/conf/machine/edgerouter.conf b/meta-yocto-bsp/conf/machine/edgerouter.conf
> index fbe33be9d157..447862f550bc 100644
> --- a/meta-yocto-bsp/conf/machine/edgerouter.conf
> +++ b/meta-yocto-bsp/conf/machine/edgerouter.conf
> @@ -2,7 +2,7 @@
> #@NAME: Edgerouter
> #@DESCRIPTION: Machine configuration for a generic edgerouter
>
> -require conf/machine/include/tune-mips64.inc
> +require conf/machine/include/mips/tune-mips64.inc
>
> MACHINE_FEATURES = "pci ext2 ext3 serial"
>
> diff --git a/meta-yocto-bsp/conf/machine/genericx86-64.conf b/meta-yocto-bsp/conf/machine/genericx86-64.conf
> index 81ec24e97146..14913ea1f152 100644
> --- a/meta-yocto-bsp/conf/machine/genericx86-64.conf
> +++ b/meta-yocto-bsp/conf/machine/genericx86-64.conf
> @@ -3,7 +3,7 @@
> #@DESCRIPTION: Machine configuration for generic x86_64 (64-bit) PCs and servers. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
>
> DEFAULTTUNE ?= "core2-64"
> -require conf/machine/include/tune-core2.inc
> +require conf/machine/include/x86/tune-core2.inc
> require conf/machine/include/genericx86-common.inc
>
> SERIAL_CONSOLES_CHECK = "ttyS0"
> diff --git a/meta-yocto-bsp/conf/machine/genericx86.conf b/meta-yocto-bsp/conf/machine/genericx86.conf
> index 1387bde852f8..ed4fc8a3de8d 100644
> --- a/meta-yocto-bsp/conf/machine/genericx86.conf
> +++ b/meta-yocto-bsp/conf/machine/genericx86.conf
> @@ -3,7 +3,7 @@
> #@DESCRIPTION: Machine configuration for generic x86 (32-bit) PCs. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
>
> DEFAULTTUNE ?= "core2-32"
> -require conf/machine/include/tune-core2.inc
> +require conf/machine/include/x86/tune-core2.inc
> require conf/machine/include/genericx86-common.inc
>
> MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += "gma500-gfx-check"
> --
> 2.20.1
>
>
>
>
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2021-08-13 8:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-10 21:45 [PATCH 0/3] tunes: the great migration Jon Mason
2021-08-10 21:45 ` [PATCH 1/3] conf/machine: move tune files to architecture directories Jon Mason
2021-08-10 21:45 ` [PATCH 2/3] yocto-bsp: update machine confs with new tune locations Jon Mason
2021-08-13 8:19 ` Alexandre Belloni [this message]
2021-08-10 21:45 ` [PATCH 3/3] docs: update docs " Jon Mason
2021-08-11 10:07 ` [OE-core] " Michael Opdenacker
[not found] ` <169A389D543FF76C.17558@lists.openembedded.org>
2021-08-13 10:03 ` Michael Opdenacker
2021-08-13 12:48 ` Michael Opdenacker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YRYq9lzl6dzzz5xr@piout.net \
--to=alexandre.belloni@bootlin.com \
--cc=jdmason@kudzu.us \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox