Message ID | 35468b8f-96e3-ce30-2365-9d72342407f1@crashcourse.ca |
---|---|
State | New |
Headers | show |
Series | local.conf.sample: drop MIPS/PPC, add RISC-V entries | expand |
A similar fix is needed for meta-yocto: https://git.yoctoproject.org/meta-yocto/tree/meta-poky/conf/templates/default/local.conf.sample Alex On Fri, 27 Jun 2025 at 17:50, Robert P. J. Day via lists.openembedded.org <rpjday=crashcourse.ca@lists.openembedded.org> wrote: > > > 1) Drop MIPS and PPC lines since we should refer to only those arches > tested by the autobuilder. > 2) Add entries for both 32-bit and 64-bit RISC-V machines. > > Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> > > --- > > diff --git a/meta/conf/templates/default/local.conf.sample b/meta/conf/templates/default/local.conf.sample > index 3a9706c1d5..749bab9883 100644 > --- a/meta/conf/templates/default/local.conf.sample > +++ b/meta/conf/templates/default/local.conf.sample > @@ -21,11 +21,10 @@ > # > #MACHINE ?= "qemuarm" > #MACHINE ?= "qemuarm64" > -#MACHINE ?= "qemumips" > -#MACHINE ?= "qemumips64" > -#MACHINE ?= "qemuppc" > #MACHINE ?= "qemux86" > #MACHINE ?= "qemux86-64" > +#MACHINE ?= "qemuriscv32" > +#MACHINE ?= "qemuriscv64" > # > # This sets the default machine to be qemux86-64 if no other machine is selected: > MACHINE ??= "qemux86-64" > > -=-=-=-=-=-=-=-=-=-=-=- > Links: You receive all messages sent to this group. > View/Reply Online (#219426): https://lists.openembedded.org/g/openembedded-core/message/219426 > Mute This Topic: https://lists.openembedded.org/mt/113863951/1686489 > Group Owner: openembedded-core+owner@lists.openembedded.org > Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com] > -=-=-=-=-=-=-=-=-=-=-=- >
On Fri, 27 Jun 2025, Alexander Kanavin wrote: > A similar fix is needed for meta-yocto: > https://git.yoctoproject.org/meta-yocto/tree/meta-poky/conf/templates/default/local.conf.sample > > Alex will do, but i will now embarrass myself by admitting that i did not even know that that layer existed. rday
On Fri, 2025-06-27 at 11:50 -0400, Robert P. J. Day via lists.openembedded.org wrote: > > 1) Drop MIPS and PPC lines since we should refer to only those arches > tested by the autobuilder. > 2) Add entries for both 32-bit and 64-bit RISC-V machines. > > Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> > > --- > > diff --git a/meta/conf/templates/default/local.conf.sample > b/meta/conf/templates/default/local.conf.sample > index 3a9706c1d5..749bab9883 100644 > --- a/meta/conf/templates/default/local.conf.sample > +++ b/meta/conf/templates/default/local.conf.sample > @@ -21,11 +21,10 @@ > # > #MACHINE ?= "qemuarm" > #MACHINE ?= "qemuarm64" > -#MACHINE ?= "qemumips" > -#MACHINE ?= "qemumips64" > -#MACHINE ?= "qemuppc" > #MACHINE ?= "qemux86" > #MACHINE ?= "qemux86-64" > +#MACHINE ?= "qemuriscv32" > +#MACHINE ?= "qemuriscv64" > # > # This sets the default machine to be qemux86-64 if no other machine > is selected: > MACHINE ??= "qemux86-64" Please only add qemuriscv64, the 32 bit version is in a different state to the 64 bit one (as documented in the support matrix). Cheers, Richard
diff --git a/meta/conf/templates/default/local.conf.sample b/meta/conf/templates/default/local.conf.sample index 3a9706c1d5..749bab9883 100644 --- a/meta/conf/templates/default/local.conf.sample +++ b/meta/conf/templates/default/local.conf.sample @@ -21,11 +21,10 @@ # #MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm64" -#MACHINE ?= "qemumips" -#MACHINE ?= "qemumips64" -#MACHINE ?= "qemuppc" #MACHINE ?= "qemux86" #MACHINE ?= "qemux86-64" +#MACHINE ?= "qemuriscv32" +#MACHINE ?= "qemuriscv64" # # This sets the default machine to be qemux86-64 if no other machine is selected: MACHINE ??= "qemux86-64"
1) Drop MIPS and PPC lines since we should refer to only those arches tested by the autobuilder. 2) Add entries for both 32-bit and 64-bit RISC-V machines. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> ---