* [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
@ 2024-04-07 19:53 Tim Orling
2024-04-07 19:53 ` [meta-raspberrypi][PATCH 1/3] layer.conf: rpi5 recommends lts-u-boot-mixin Tim Orling
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Tim Orling @ 2024-04-07 19:53 UTC (permalink / raw)
To: yocto
Enable u-boot for the raspberrypi5 via the meta-lts-mixins 'scarthgap/u-boot' branch.
This is initial support for raspberrypi5, not all features (usb, ethernet) are enabled
in u-boot yet.
You may need to have a UART dongle plugged into the 'UART' port between 'HDMI0' and
'HDMI1' to get the kernel to boot. Your mileage may vary.
The following changes since commit d072cc8a48571a4af40a937f98e173b5c9468c4f:
rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31 +0000)
are available in the Git repository at:
https://github.com/moto-timo/meta-raspberrypi scarthgap/raspberrypi5_u-boot
https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
Tim Orling (3):
layer.conf: rpi5 recommends lts-u-boot-mixin
u-boot: re-enable rapsberrypi5
raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
conf/layer.conf | 3 +++
conf/machine/raspberrypi5.conf | 6 ++++++
recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
3 files changed, 9 insertions(+), 3 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 9+ messages in thread* [meta-raspberrypi][PATCH 1/3] layer.conf: rpi5 recommends lts-u-boot-mixin
2024-04-07 19:53 [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Tim Orling
@ 2024-04-07 19:53 ` Tim Orling
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 2/3] u-boot: re-enable rapsberrypi5 Tim Orling
` (2 subsequent siblings)
3 siblings, 0 replies; 9+ messages in thread
From: Tim Orling @ 2024-04-07 19:53 UTC (permalink / raw)
To: yocto
Add lts-u-boot-mixin to LAYERRECOMMENDS
https://git.yoctoproject.org/meta-lts-mixins 'scarthgap/u-boot' branch
adds u-boot v2024.04 support which includes the initial support for
raspberrypi5.
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
conf/layer.conf | 3 +++
1 file changed, 3 insertions(+)
diff --git a/conf/layer.conf b/conf/layer.conf
index 9488ac9..deea4a1 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -11,6 +11,9 @@ BBFILE_PRIORITY_raspberrypi = "9"
LAYERSERIES_COMPAT_raspberrypi = "nanbield scarthgap"
LAYERDEPENDS_raspberrypi = "core"
+# Recommended for u-boot support for raspberrypi5
+# https://git.yoctoproject.org/meta-lts-mixins 'scarthgap/u-boot' branch
+LAYERRECOMMENDS_raspberrypi = "lts-u-boot-mixin"
# Additional license directories.
LICENSE_PATH += "${LAYERDIR}/files/custom-licenses"
--
2.43.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [meta-raspberrypi][PATCH 2/3] u-boot: re-enable rapsberrypi5
2024-04-07 19:53 [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Tim Orling
2024-04-07 19:53 ` [meta-raspberrypi][PATCH 1/3] layer.conf: rpi5 recommends lts-u-boot-mixin Tim Orling
@ 2024-04-07 19:54 ` Tim Orling
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 3/3] raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT Tim Orling
2024-04-07 20:10 ` [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Khem Raj
3 siblings, 0 replies; 9+ messages in thread
From: Tim Orling @ 2024-04-07 19:54 UTC (permalink / raw)
To: yocto
With meta-lts-mixins scarthgap/u-boot we can now support raspberrypi5
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
conf/machine/raspberrypi5.conf | 2 ++
recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/conf/machine/raspberrypi5.conf b/conf/machine/raspberrypi5.conf
index 8c38637..e53c2d5 100644
--- a/conf/machine/raspberrypi5.conf
+++ b/conf/machine/raspberrypi5.conf
@@ -24,3 +24,5 @@ VC4DTBO ?= "vc4-kms-v3d"
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
KERNEL_IMAGETYPE_DIRECT ?= "Image"
+
+UBOOT_MACHINE = "rpi_arm64_config"
diff --git a/recipes-bsp/u-boot/u-boot_%.bbappend b/recipes-bsp/u-boot/u-boot_%.bbappend
index 78b3e48..e50acf5 100644
--- a/recipes-bsp/u-boot/u-boot_%.bbappend
+++ b/recipes-bsp/u-boot/u-boot_%.bbappend
@@ -12,6 +12,3 @@ do_install:append:rpi () {
install -d ${D}${sysconfdir}
install -m 0644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config
}
-
-# Temporary avoid Raspberry Pi 5 because U-Boot has not been ported yet
-COMPATIBLE_MACHINE:raspberrypi5 = "(-)"
--
2.43.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [meta-raspberrypi][PATCH 3/3] raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
2024-04-07 19:53 [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Tim Orling
2024-04-07 19:53 ` [meta-raspberrypi][PATCH 1/3] layer.conf: rpi5 recommends lts-u-boot-mixin Tim Orling
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 2/3] u-boot: re-enable rapsberrypi5 Tim Orling
@ 2024-04-07 19:54 ` Tim Orling
2024-04-07 20:10 ` [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Khem Raj
3 siblings, 0 replies; 9+ messages in thread
From: Tim Orling @ 2024-04-07 19:54 UTC (permalink / raw)
To: yocto
Similar to raspberrypi4-64.conf, we need to set KERNEL_IMAGETYPE_UBOOT to
"Image" and set KERNEL_BOOTCMD to "booti"
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
conf/machine/raspberrypi5.conf | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/conf/machine/raspberrypi5.conf b/conf/machine/raspberrypi5.conf
index e53c2d5..03f15c3 100644
--- a/conf/machine/raspberrypi5.conf
+++ b/conf/machine/raspberrypi5.conf
@@ -22,7 +22,11 @@ SERIAL_CONSOLES ?= "115200;ttyAMA10"
VC4DTBO ?= "vc4-kms-v3d"
+# When u-boot is enabled we need to use the "Image" format and the "booti"
+# command to load the kernel
+KERNEL_IMAGETYPE_UBOOT ?= "Image"
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
KERNEL_IMAGETYPE_DIRECT ?= "Image"
+KERNEL_BOOTCMD ?= "booti"
UBOOT_MACHINE = "rpi_arm64_config"
--
2.43.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
2024-04-07 19:53 [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Tim Orling
` (2 preceding siblings ...)
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 3/3] raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT Tim Orling
@ 2024-04-07 20:10 ` Khem Raj
2024-04-07 20:22 ` Tim Orling
3 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2024-04-07 20:10 UTC (permalink / raw)
To: yocto, tim.orling
I think it would be better if you opened a github PR so it can run through CI
On Sun, Apr 7, 2024 at 12:54 PM Tim Orling <tim.orling@konsulko.com> wrote:
>
> Enable u-boot for the raspberrypi5 via the meta-lts-mixins 'scarthgap/u-boot' branch.
>
> This is initial support for raspberrypi5, not all features (usb, ethernet) are enabled
> in u-boot yet.
>
> You may need to have a UART dongle plugged into the 'UART' port between 'HDMI0' and
> 'HDMI1' to get the kernel to boot. Your mileage may vary.
>
> The following changes since commit d072cc8a48571a4af40a937f98e173b5c9468c4f:
>
> rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31 +0000)
>
> are available in the Git repository at:
>
> https://github.com/moto-timo/meta-raspberrypi scarthgap/raspberrypi5_u-boot
> https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
>
> Tim Orling (3):
> layer.conf: rpi5 recommends lts-u-boot-mixin
> u-boot: re-enable rapsberrypi5
> raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
>
> conf/layer.conf | 3 +++
> conf/machine/raspberrypi5.conf | 6 ++++++
> recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
> 3 files changed, 9 insertions(+), 3 deletions(-)
>
> --
> 2.43.2
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> You automatically follow any topics you start or reply to.
> View/Reply Online (#62891): https://lists.yoctoproject.org/g/yocto/message/62891
> Mute This Topic: https://lists.yoctoproject.org/mt/105388889/1997914
> Group Owner: yocto+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
2024-04-07 20:10 ` [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Khem Raj
@ 2024-04-07 20:22 ` Tim Orling
2024-04-07 20:25 ` Tim Orling
0 siblings, 1 reply; 9+ messages in thread
From: Tim Orling @ 2024-04-07 20:22 UTC (permalink / raw)
To: Khem Raj; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 2094 bytes --]
I set up my github repo with git.yoctoproject.org so I have to destroy it
to fork from agherzan and send a PR.
It's Sunday. I'm not going to do that.
On Sun, Apr 7, 2024 at 1:11 PM Khem Raj <raj.khem@gmail.com> wrote:
> I think it would be better if you opened a github PR so it can run through
> CI
>
> On Sun, Apr 7, 2024 at 12:54 PM Tim Orling <tim.orling@konsulko.com>
> wrote:
> >
> > Enable u-boot for the raspberrypi5 via the meta-lts-mixins
> 'scarthgap/u-boot' branch.
> >
> > This is initial support for raspberrypi5, not all features (usb,
> ethernet) are enabled
> > in u-boot yet.
> >
> > You may need to have a UART dongle plugged into the 'UART' port between
> 'HDMI0' and
> > 'HDMI1' to get the kernel to boot. Your mileage may vary.
> >
> > The following changes since commit
> d072cc8a48571a4af40a937f98e173b5c9468c4f:
> >
> > rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31 +0000)
> >
> > are available in the Git repository at:
> >
> > https://github.com/moto-timo/meta-raspberrypi
> scarthgap/raspberrypi5_u-boot
> >
> https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
> >
> > Tim Orling (3):
> > layer.conf: rpi5 recommends lts-u-boot-mixin
> > u-boot: re-enable rapsberrypi5
> > raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
> >
> > conf/layer.conf | 3 +++
> > conf/machine/raspberrypi5.conf | 6 ++++++
> > recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
> > 3 files changed, 9 insertions(+), 3 deletions(-)
> >
> > --
> > 2.43.2
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > You automatically follow any topics you start or reply to.
> > View/Reply Online (#62891):
> https://lists.yoctoproject.org/g/yocto/message/62891
> > Mute This Topic: https://lists.yoctoproject.org/mt/105388889/1997914
> > Group Owner: yocto+owner@lists.yoctoproject.org
> > Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [
> raj.khem@gmail.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
>
[-- Attachment #2: Type: text/html, Size: 3391 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
2024-04-07 20:22 ` Tim Orling
@ 2024-04-07 20:25 ` Tim Orling
2024-04-07 21:58 ` Khem Raj
0 siblings, 1 reply; 9+ messages in thread
From: Tim Orling @ 2024-04-07 20:25 UTC (permalink / raw)
To: Khem Raj; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 2369 bytes --]
Dear GitHub, please let us attach a repo to another GitHub repo after the
creation. Why is a fork something opaque to us?
On Sun, Apr 7, 2024 at 1:22 PM Tim Orling <tim.orling@konsulko.com> wrote:
> I set up my github repo with git.yoctoproject.org so I have to destroy it
> to fork from agherzan and send a PR.
>
> It's Sunday. I'm not going to do that.
>
> On Sun, Apr 7, 2024 at 1:11 PM Khem Raj <raj.khem@gmail.com> wrote:
>
>> I think it would be better if you opened a github PR so it can run
>> through CI
>>
>> On Sun, Apr 7, 2024 at 12:54 PM Tim Orling <tim.orling@konsulko.com>
>> wrote:
>> >
>> > Enable u-boot for the raspberrypi5 via the meta-lts-mixins
>> 'scarthgap/u-boot' branch.
>> >
>> > This is initial support for raspberrypi5, not all features (usb,
>> ethernet) are enabled
>> > in u-boot yet.
>> >
>> > You may need to have a UART dongle plugged into the 'UART' port between
>> 'HDMI0' and
>> > 'HDMI1' to get the kernel to boot. Your mileage may vary.
>> >
>> > The following changes since commit
>> d072cc8a48571a4af40a937f98e173b5c9468c4f:
>> >
>> > rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31 +0000)
>> >
>> > are available in the Git repository at:
>> >
>> > https://github.com/moto-timo/meta-raspberrypi
>> scarthgap/raspberrypi5_u-boot
>> >
>> https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
>> >
>> > Tim Orling (3):
>> > layer.conf: rpi5 recommends lts-u-boot-mixin
>> > u-boot: re-enable rapsberrypi5
>> > raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
>> >
>> > conf/layer.conf | 3 +++
>> > conf/machine/raspberrypi5.conf | 6 ++++++
>> > recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
>> > 3 files changed, 9 insertions(+), 3 deletions(-)
>> >
>> > --
>> > 2.43.2
>> >
>> >
>> > -=-=-=-=-=-=-=-=-=-=-=-
>> > Links: You receive all messages sent to this group.
>> > You automatically follow any topics you start or reply to.
>> > View/Reply Online (#62891):
>> https://lists.yoctoproject.org/g/yocto/message/62891
>> > Mute This Topic: https://lists.yoctoproject.org/mt/105388889/1997914
>> > Group Owner: yocto+owner@lists.yoctoproject.org
>> > Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [
>> raj.khem@gmail.com]
>> > -=-=-=-=-=-=-=-=-=-=-=-
>> >
>>
>
[-- Attachment #2: Type: text/html, Size: 3907 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
2024-04-07 20:25 ` Tim Orling
@ 2024-04-07 21:58 ` Khem Raj
2024-04-07 22:09 ` Tim Orling
0 siblings, 1 reply; 9+ messages in thread
From: Khem Raj @ 2024-04-07 21:58 UTC (permalink / raw)
To: Tim Orling; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 2568 bytes --]
On Sun, Apr 7, 2024 at 1:25 PM Tim Orling <tim.orling@konsulko.com> wrote:
> Dear GitHub, please let us attach a repo to another GitHub repo after the
> creation. Why is a fork something opaque to us?
>
Look into using git remote add …
>
> On Sun, Apr 7, 2024 at 1:22 PM Tim Orling <tim.orling@konsulko.com> wrote:
>
>> I set up my github repo with git.yoctoproject.org so I have to destroy
>> it to fork from agherzan and send a PR.
>>
>> It's Sunday. I'm not going to do that.
>>
>> On Sun, Apr 7, 2024 at 1:11 PM Khem Raj <raj.khem@gmail.com> wrote:
>>
>>> I think it would be better if you opened a github PR so it can run
>>> through CI
>>>
>>> On Sun, Apr 7, 2024 at 12:54 PM Tim Orling <tim.orling@konsulko.com>
>>> wrote:
>>> >
>>> > Enable u-boot for the raspberrypi5 via the meta-lts-mixins
>>> 'scarthgap/u-boot' branch.
>>> >
>>> > This is initial support for raspberrypi5, not all features (usb,
>>> ethernet) are enabled
>>> > in u-boot yet.
>>> >
>>> > You may need to have a UART dongle plugged into the 'UART' port
>>> between 'HDMI0' and
>>> > 'HDMI1' to get the kernel to boot. Your mileage may vary.
>>> >
>>> > The following changes since commit
>>> d072cc8a48571a4af40a937f98e173b5c9468c4f:
>>> >
>>> > rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31
>>> +0000)
>>> >
>>> > are available in the Git repository at:
>>> >
>>> > https://github.com/moto-timo/meta-raspberrypi
>>> scarthgap/raspberrypi5_u-boot
>>> >
>>> https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
>>> >
>>> > Tim Orling (3):
>>> > layer.conf: rpi5 recommends lts-u-boot-mixin
>>> > u-boot: re-enable rapsberrypi5
>>> > raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
>>> >
>>> > conf/layer.conf | 3 +++
>>> > conf/machine/raspberrypi5.conf | 6 ++++++
>>> > recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
>>> > 3 files changed, 9 insertions(+), 3 deletions(-)
>>> >
>>> > --
>>> > 2.43.2
>>> >
>>> >
>>> > -=-=-=-=-=-=-=-=-=-=-=-
>>> > Links: You receive all messages sent to this group.
>>> > You automatically follow any topics you start or reply to.
>>> > View/Reply Online (#62891):
>>> https://lists.yoctoproject.org/g/yocto/message/62891
>>> > Mute This Topic: https://lists.yoctoproject.org/mt/105388889/1997914
>>> > Group Owner: yocto+owner@lists.yoctoproject.org
>>> > Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [
>>> raj.khem@gmail.com]
>>> > -=-=-=-=-=-=-=-=-=-=-=-
>>> >
>>>
>>
[-- Attachment #2: Type: text/html, Size: 4490 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5
2024-04-07 21:58 ` Khem Raj
@ 2024-04-07 22:09 ` Tim Orling
0 siblings, 0 replies; 9+ messages in thread
From: Tim Orling @ 2024-04-07 22:09 UTC (permalink / raw)
To: Khem Raj; +Cc: yocto
[-- Attachment #1: Type: text/plain, Size: 2898 bytes --]
I was able to do a workaround and use our `konsulko` github account instead:
https://github.com/agherzan/meta-raspberrypi/pull/1304
Never give up. Keep on trying.
On Sun, Apr 7, 2024 at 2:58 PM Khem Raj <raj.khem@gmail.com> wrote:
>
>
> On Sun, Apr 7, 2024 at 1:25 PM Tim Orling <tim.orling@konsulko.com> wrote:
>
>> Dear GitHub, please let us attach a repo to another GitHub repo after the
>> creation. Why is a fork something opaque to us?
>>
>
> Look into using git remote add …
>
>>
>> On Sun, Apr 7, 2024 at 1:22 PM Tim Orling <tim.orling@konsulko.com>
>> wrote:
>>
>>> I set up my github repo with git.yoctoproject.org so I have to destroy
>>> it to fork from agherzan and send a PR.
>>>
>>> It's Sunday. I'm not going to do that.
>>>
>>> On Sun, Apr 7, 2024 at 1:11 PM Khem Raj <raj.khem@gmail.com> wrote:
>>>
>>>> I think it would be better if you opened a github PR so it can run
>>>> through CI
>>>>
>>>> On Sun, Apr 7, 2024 at 12:54 PM Tim Orling <tim.orling@konsulko.com>
>>>> wrote:
>>>> >
>>>> > Enable u-boot for the raspberrypi5 via the meta-lts-mixins
>>>> 'scarthgap/u-boot' branch.
>>>> >
>>>> > This is initial support for raspberrypi5, not all features (usb,
>>>> ethernet) are enabled
>>>> > in u-boot yet.
>>>> >
>>>> > You may need to have a UART dongle plugged into the 'UART' port
>>>> between 'HDMI0' and
>>>> > 'HDMI1' to get the kernel to boot. Your mileage may vary.
>>>> >
>>>> > The following changes since commit
>>>> d072cc8a48571a4af40a937f98e173b5c9468c4f:
>>>> >
>>>> > rpi-base: Add hifiberry-dacplusadc overlay (2024-03-28 03:35:31
>>>> +0000)
>>>> >
>>>> > are available in the Git repository at:
>>>> >
>>>> > https://github.com/moto-timo/meta-raspberrypi
>>>> scarthgap/raspberrypi5_u-boot
>>>> >
>>>> https://github.com/moto-timo/meta-raspberrypi/tree/scarthgap/raspberrypi5_u-boot
>>>> >
>>>> > Tim Orling (3):
>>>> > layer.conf: rpi5 recommends lts-u-boot-mixin
>>>> > u-boot: re-enable rapsberrypi5
>>>> > raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT
>>>> >
>>>> > conf/layer.conf | 3 +++
>>>> > conf/machine/raspberrypi5.conf | 6 ++++++
>>>> > recipes-bsp/u-boot/u-boot_%.bbappend | 3 ---
>>>> > 3 files changed, 9 insertions(+), 3 deletions(-)
>>>> >
>>>> > --
>>>> > 2.43.2
>>>> >
>>>> >
>>>> > -=-=-=-=-=-=-=-=-=-=-=-
>>>> > Links: You receive all messages sent to this group.
>>>> > You automatically follow any topics you start or reply to.
>>>> > View/Reply Online (#62891):
>>>> https://lists.yoctoproject.org/g/yocto/message/62891
>>>> > Mute This Topic: https://lists.yoctoproject.org/mt/105388889/1997914
>>>> > Group Owner: yocto+owner@lists.yoctoproject.org
>>>> > Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [
>>>> raj.khem@gmail.com]
>>>> > -=-=-=-=-=-=-=-=-=-=-=-
>>>> >
>>>>
>>>
[-- Attachment #2: Type: text/html, Size: 5165 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-04-07 22:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-07 19:53 [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Tim Orling
2024-04-07 19:53 ` [meta-raspberrypi][PATCH 1/3] layer.conf: rpi5 recommends lts-u-boot-mixin Tim Orling
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 2/3] u-boot: re-enable rapsberrypi5 Tim Orling
2024-04-07 19:54 ` [meta-raspberrypi][PATCH 3/3] raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT Tim Orling
2024-04-07 20:10 ` [yocto] [meta-raspberrypi][PATCH 0/3] Initial u-boot support for raspberrypi5 Khem Raj
2024-04-07 20:22 ` Tim Orling
2024-04-07 20:25 ` Tim Orling
2024-04-07 21:58 ` Khem Raj
2024-04-07 22:09 ` Tim Orling
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.