* [PATCH] libretech-cc: Populate SMBIOS information
@ 2023-11-20 20:16 Tom Rini
2023-11-21 2:16 ` Simon Glass
2023-11-21 9:18 ` Neil Armstrong
0 siblings, 2 replies; 9+ messages in thread
From: Tom Rini @ 2023-11-20 20:16 UTC (permalink / raw)
To: u-boot; +Cc: Neil Armstrong, u-boot-amlogic
Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
eventually display this information
Signed-off-by: Tom Rini <trini@konsulko.com>
---
Posting this as this was the easiest platform for me to test some SMBIOS
related patches on and I needed to populate the nodes so I could check
things in dmidecode once Linux was up.
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: u-boot-amlogic@groups.io
---
.../meson-gxl-s905x-libretech-cc-u-boot.dtsi | 23 +++++++++++++++++++
configs/libretech-cc_defconfig | 2 ++
2 files changed, 25 insertions(+)
diff --git a/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi b/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
index 39270ea71c8b..e56cd67a9d91 100644
--- a/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
+++ b/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
@@ -5,3 +5,26 @@
*/
#include "meson-gxl-u-boot.dtsi"
+
+/ {
+ smbios {
+ compatible = "u-boot,sysinfo-smbios";
+
+ smbios {
+ system {
+ manufacturer = "libre.computer";
+ product = "Le Potato";
+ };
+
+ baseboard {
+ manufacturer = "libre.computer";
+ product = "Le Potato";
+ };
+
+ chassis {
+ manufacturer = "libre.computer";
+ product = "Le Potato";
+ };
+ };
+ };
+};
diff --git a/configs/libretech-cc_defconfig b/configs/libretech-cc_defconfig
index baa9b1b3dbc5..24a46f50d0d9 100644
--- a/configs/libretech-cc_defconfig
+++ b/configs/libretech-cc_defconfig
@@ -55,6 +55,8 @@ CONFIG_DM_REGULATOR_FIXED=y
CONFIG_DEBUG_UART_ANNOUNCE=y
CONFIG_DEBUG_UART_SKIP_INIT=y
CONFIG_MESON_SERIAL=y
+CONFIG_SYSINFO=y
+CONFIG_SYSINFO_SMBIOS=y
CONFIG_USB=y
CONFIG_DM_USB_GADGET=y
CONFIG_USB_XHCI_HCD=y
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-20 20:16 [PATCH] libretech-cc: Populate SMBIOS information Tom Rini
@ 2023-11-21 2:16 ` Simon Glass
2023-11-21 9:18 ` Neil Armstrong
1 sibling, 0 replies; 9+ messages in thread
From: Simon Glass @ 2023-11-21 2:16 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot, Neil Armstrong, u-boot-amlogic
On Mon, 20 Nov 2023 at 13:16, Tom Rini <trini@konsulko.com> wrote:
>
> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> eventually display this information
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> Posting this as this was the easiest platform for me to test some SMBIOS
> related patches on and I needed to populate the nodes so I could check
> things in dmidecode once Linux was up.
>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: u-boot-amlogic@groups.io
> ---
> .../meson-gxl-s905x-libretech-cc-u-boot.dtsi | 23 +++++++++++++++++++
> configs/libretech-cc_defconfig | 2 ++
> 2 files changed, 25 insertions(+)
>
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-20 20:16 [PATCH] libretech-cc: Populate SMBIOS information Tom Rini
2023-11-21 2:16 ` Simon Glass
@ 2023-11-21 9:18 ` Neil Armstrong
2023-11-21 13:15 ` Tom Rini
1 sibling, 1 reply; 9+ messages in thread
From: Neil Armstrong @ 2023-11-21 9:18 UTC (permalink / raw)
To: Tom Rini, u-boot; +Cc: u-boot-amlogic
Hi Tom,
On 20/11/2023 21:16, Tom Rini wrote:
> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> eventually display this information
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> Posting this as this was the easiest platform for me to test some SMBIOS
> related patches on and I needed to populate the nodes so I could check
> things in dmidecode once Linux was up.
Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: u-boot-amlogic@groups.io
> ---
> .../meson-gxl-s905x-libretech-cc-u-boot.dtsi | 23 +++++++++++++++++++
> configs/libretech-cc_defconfig | 2 ++
> 2 files changed, 25 insertions(+)
>
> diff --git a/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi b/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
> index 39270ea71c8b..e56cd67a9d91 100644
> --- a/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
> +++ b/arch/arm/dts/meson-gxl-s905x-libretech-cc-u-boot.dtsi
> @@ -5,3 +5,26 @@
> */
>
> #include "meson-gxl-u-boot.dtsi"
> +
> +/ {
> + smbios {
> + compatible = "u-boot,sysinfo-smbios";
> +
> + smbios {
> + system {
> + manufacturer = "libre.computer";
> + product = "Le Potato";
I'll use the real product identifier here instead: AML-S905X-CC
Here's the downstream vendor change:
https://github.com/libre-computer-project/libretech-u-boot/commit/cb68b838f1b80ad201ec02f04d2841ee535b9818
> + };
> +
> + baseboard {
> + manufacturer = "libre.computer";
> + product = "Le Potato";
> + };
> +
> + chassis {
> + manufacturer = "libre.computer";
> + product = "Le Potato";
> + };
> + };
> + };
> +};
> diff --git a/configs/libretech-cc_defconfig b/configs/libretech-cc_defconfig
> index baa9b1b3dbc5..24a46f50d0d9 100644
> --- a/configs/libretech-cc_defconfig
> +++ b/configs/libretech-cc_defconfig
> @@ -55,6 +55,8 @@ CONFIG_DM_REGULATOR_FIXED=y
> CONFIG_DEBUG_UART_ANNOUNCE=y
> CONFIG_DEBUG_UART_SKIP_INIT=y
> CONFIG_MESON_SERIAL=y
> +CONFIG_SYSINFO=y
> +CONFIG_SYSINFO_SMBIOS=y
> CONFIG_USB=y
> CONFIG_DM_USB_GADGET=y
> CONFIG_USB_XHCI_HCD=y
Thanks,
Neil
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 9:18 ` Neil Armstrong
@ 2023-11-21 13:15 ` Tom Rini
2023-11-21 13:46 ` Neil Armstrong
0 siblings, 1 reply; 9+ messages in thread
From: Tom Rini @ 2023-11-21 13:15 UTC (permalink / raw)
To: Neil Armstrong; +Cc: u-boot, u-boot-amlogic
[-- Attachment #1: Type: text/plain, Size: 1059 bytes --]
On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
> Hi Tom,
>
> On 20/11/2023 21:16, Tom Rini wrote:
> > Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> > eventually display this information
> >
> > Signed-off-by: Tom Rini <trini@konsulko.com>
> > ---
> > Posting this as this was the easiest platform for me to test some SMBIOS
> > related patches on and I needed to populate the nodes so I could check
> > things in dmidecode once Linux was up.
>
> Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
> Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
Part of the "fun" as to why we have the binding here is that while we
could use the top-level model property, there's not a corresponding one
for manufacturer. I'm fine ignoring the patch I posted here and having a
longer discussion about populating SMBIOS more usefully, globally, as I
think has been suggested a time or two.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 13:15 ` Tom Rini
@ 2023-11-21 13:46 ` Neil Armstrong
2023-11-21 14:09 ` Tom Rini
0 siblings, 1 reply; 9+ messages in thread
From: Neil Armstrong @ 2023-11-21 13:46 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot, u-boot-amlogic
On 21/11/2023 14:15, Tom Rini wrote:
> On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
>> Hi Tom,
>>
>> On 20/11/2023 21:16, Tom Rini wrote:
>>> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
>>> eventually display this information
>>>
>>> Signed-off-by: Tom Rini <trini@konsulko.com>
>>> ---
>>> Posting this as this was the easiest platform for me to test some SMBIOS
>>> related patches on and I needed to populate the nodes so I could check
>>> things in dmidecode once Linux was up.
>>
>> Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
>> Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
>
> Part of the "fun" as to why we have the binding here is that while we
> could use the top-level model property, there's not a corresponding one
> for manufacturer. I'm fine ignoring the patch I posted here and having a
> longer discussion about populating SMBIOS more usefully, globally, as I
> think has been suggested a time or two.
>
I'm ok landing it with the same data as from the vendor.
but couldn't we use the first top-level compatible as default smbios data ?
compatible = "vendor1,board-name", "vendor1,soc-name";
and translate to:
smbios {
system {
manufacturer = "vendor1";
product = "board-name";
};
baseboard {
manufacturer = "vendor1";
product = "board-name";
};
chassis {
manufacturer = "vendor1";
product = "board-name";
};
};
since the vendor name should be already documented in the linux
bindings, same for the board name.
And we would be free to add some custom data in the DT if needed.
Anyway, not sure it's the right place to discuss about that !
Neil
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 13:46 ` Neil Armstrong
@ 2023-11-21 14:09 ` Tom Rini
2023-11-21 14:43 ` Neil Armstrong
0 siblings, 1 reply; 9+ messages in thread
From: Tom Rini @ 2023-11-21 14:09 UTC (permalink / raw)
To: Neil Armstrong; +Cc: u-boot, u-boot-amlogic, Ilias Apalodimas, Simon Glass
[-- Attachment #1: Type: text/plain, Size: 2410 bytes --]
On Tue, Nov 21, 2023 at 02:46:29PM +0100, Neil Armstrong wrote:
> On 21/11/2023 14:15, Tom Rini wrote:
> > On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
> > > Hi Tom,
> > >
> > > On 20/11/2023 21:16, Tom Rini wrote:
> > > > Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> > > > eventually display this information
> > > >
> > > > Signed-off-by: Tom Rini <trini@konsulko.com>
> > > > ---
> > > > Posting this as this was the easiest platform for me to test some SMBIOS
> > > > related patches on and I needed to populate the nodes so I could check
> > > > things in dmidecode once Linux was up.
> > >
> > > Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
> > > Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
> >
> > Part of the "fun" as to why we have the binding here is that while we
> > could use the top-level model property, there's not a corresponding one
> > for manufacturer. I'm fine ignoring the patch I posted here and having a
> > longer discussion about populating SMBIOS more usefully, globally, as I
> > think has been suggested a time or two.
> >
>
> I'm ok landing it with the same data as from the vendor.
> but couldn't we use the first top-level compatible as default smbios data ?
>
> compatible = "vendor1,board-name", "vendor1,soc-name";
>
> and translate to:
>
>
> smbios {
> system {
> manufacturer = "vendor1";
> product = "board-name";
> };
>
> baseboard {
> manufacturer = "vendor1";
> product = "board-name";
> };
>
> chassis {
> manufacturer = "vendor1";
> product = "board-name";
> };
> };
>
> since the vendor name should be already documented in the linux
> bindings, same for the board name.
> And we would be free to add some custom data in the DT if needed.
>
> Anyway, not sure it's the right place to discuss about that !
That's essentially
https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-2-ilias.apalodimas@linaro.org/
which had a bunch of comments on 1/2:
https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-1-ilias.apalodimas@linaro.org/
But I think that since then some thoughts on the subject have changed
and that approach might be more welcome now than it was then.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 14:09 ` Tom Rini
@ 2023-11-21 14:43 ` Neil Armstrong
2023-11-21 15:07 ` Ilias Apalodimas
2023-11-22 20:02 ` Peter Robinson
0 siblings, 2 replies; 9+ messages in thread
From: Neil Armstrong @ 2023-11-21 14:43 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot, u-boot-amlogic, Ilias Apalodimas, Simon Glass
On 21/11/2023 15:09, Tom Rini wrote:
> On Tue, Nov 21, 2023 at 02:46:29PM +0100, Neil Armstrong wrote:
>> On 21/11/2023 14:15, Tom Rini wrote:
>>> On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
>>>> Hi Tom,
>>>>
>>>> On 20/11/2023 21:16, Tom Rini wrote:
>>>>> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
>>>>> eventually display this information
>>>>>
>>>>> Signed-off-by: Tom Rini <trini@konsulko.com>
>>>>> ---
>>>>> Posting this as this was the easiest platform for me to test some SMBIOS
>>>>> related patches on and I needed to populate the nodes so I could check
>>>>> things in dmidecode once Linux was up.
>>>>
>>>> Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
>>>> Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
>>>
>>> Part of the "fun" as to why we have the binding here is that while we
>>> could use the top-level model property, there's not a corresponding one
>>> for manufacturer. I'm fine ignoring the patch I posted here and having a
>>> longer discussion about populating SMBIOS more usefully, globally, as I
>>> think has been suggested a time or two.
>>>
>>
>> I'm ok landing it with the same data as from the vendor.
>> but couldn't we use the first top-level compatible as default smbios data ?
>>
>> compatible = "vendor1,board-name", "vendor1,soc-name";
>>
>> and translate to:
>>
>>
>> smbios {
>> system {
>> manufacturer = "vendor1";
>> product = "board-name";
>> };
>>
>> baseboard {
>> manufacturer = "vendor1";
>> product = "board-name";
>> };
>>
>> chassis {
>> manufacturer = "vendor1";
>> product = "board-name";
>> };
>> };
>>
>> since the vendor name should be already documented in the linux
>> bindings, same for the board name.
>> And we would be free to add some custom data in the DT if needed.
>>
>> Anyway, not sure it's the right place to discuss about that !
>
> That's essentially
> https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-2-ilias.apalodimas@linaro.org/
> which had a bunch of comments on 1/2:
> https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-1-ilias.apalodimas@linaro.org/
>
> But I think that since then some thoughts on the subject have changed
> and that approach might be more welcome now than it was then.
>
Thanks for the pointer, seems I had the exact same idea.
Hope this will be re-spinned, I don't want to add this to the 45 amlogic
boards when we have the necessary info already available and documented...
Neil
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 14:43 ` Neil Armstrong
@ 2023-11-21 15:07 ` Ilias Apalodimas
2023-11-22 20:02 ` Peter Robinson
1 sibling, 0 replies; 9+ messages in thread
From: Ilias Apalodimas @ 2023-11-21 15:07 UTC (permalink / raw)
To: neil.armstrong; +Cc: Tom Rini, u-boot, u-boot-amlogic, Simon Glass
Hi Neil,
On Tue, 21 Nov 2023 at 16:43, Neil Armstrong <neil.armstrong@linaro.org> wrote:
>
> On 21/11/2023 15:09, Tom Rini wrote:
> > On Tue, Nov 21, 2023 at 02:46:29PM +0100, Neil Armstrong wrote:
> >> On 21/11/2023 14:15, Tom Rini wrote:
> >>> On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
> >>>> Hi Tom,
> >>>>
> >>>> On 20/11/2023 21:16, Tom Rini wrote:
> >>>>> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> >>>>> eventually display this information
> >>>>>
> >>>>> Signed-off-by: Tom Rini <trini@konsulko.com>
> >>>>> ---
> >>>>> Posting this as this was the easiest platform for me to test some SMBIOS
> >>>>> related patches on and I needed to populate the nodes so I could check
> >>>>> things in dmidecode once Linux was up.
> >>>>
> >>>> Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
> >>>> Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
> >>>
> >>> Part of the "fun" as to why we have the binding here is that while we
> >>> could use the top-level model property, there's not a corresponding one
> >>> for manufacturer. I'm fine ignoring the patch I posted here and having a
> >>> longer discussion about populating SMBIOS more usefully, globally, as I
> >>> think has been suggested a time or two.
> >>>
> >>
> >> I'm ok landing it with the same data as from the vendor.
> >> but couldn't we use the first top-level compatible as default smbios data ?
> >>
> >> compatible = "vendor1,board-name", "vendor1,soc-name";
> >>
> >> and translate to:
> >>
> >>
> >> smbios {
> >> system {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >>
> >> baseboard {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >>
> >> chassis {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >> };
> >>
> >> since the vendor name should be already documented in the linux
> >> bindings, same for the board name.
> >> And we would be free to add some custom data in the DT if needed.
> >>
> >> Anyway, not sure it's the right place to discuss about that !
> >
> > That's essentially
> > https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-2-ilias.apalodimas@linaro.org/
> > which had a bunch of comments on 1/2:
> > https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-1-ilias.apalodimas@linaro.org/
> >
> > But I think that since then some thoughts on the subject have changed
> > and that approach might be more welcome now than it was then.
> >
>
> Thanks for the pointer, seems I had the exact same idea.
> Hope this will be re-spinned, I don't want to add this to the 45 amlogic
> boards when we have the necessary info already available and documented...
I'll respin the patches Tom mentioned once I find some time to address
the comments in v1. Hope to do it by the end of the week
Cheers
/Ilias
>
> Neil
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] libretech-cc: Populate SMBIOS information
2023-11-21 14:43 ` Neil Armstrong
2023-11-21 15:07 ` Ilias Apalodimas
@ 2023-11-22 20:02 ` Peter Robinson
1 sibling, 0 replies; 9+ messages in thread
From: Peter Robinson @ 2023-11-22 20:02 UTC (permalink / raw)
To: neil.armstrong
Cc: Tom Rini, u-boot, u-boot-amlogic, Ilias Apalodimas, Simon Glass
On Tue, Nov 21, 2023 at 2:50 PM Neil Armstrong
<neil.armstrong@linaro.org> wrote:
>
> On 21/11/2023 15:09, Tom Rini wrote:
> > On Tue, Nov 21, 2023 at 02:46:29PM +0100, Neil Armstrong wrote:
> >> On 21/11/2023 14:15, Tom Rini wrote:
> >>> On Tue, Nov 21, 2023 at 10:18:04AM +0100, Neil Armstrong wrote:
> >>>> Hi Tom,
> >>>>
> >>>> On 20/11/2023 21:16, Tom Rini wrote:
> >>>>> Enable CONFIG_SYSINFO_SMBIOS and populate the nodes so that Linux can
> >>>>> eventually display this information
> >>>>>
> >>>>> Signed-off-by: Tom Rini <trini@konsulko.com>
> >>>>> ---
> >>>>> Posting this as this was the easiest platform for me to test some SMBIOS
> >>>>> related patches on and I needed to populate the nodes so I could check
> >>>>> things in dmidecode once Linux was up.
> >>>>
> >>>> Sorry to be late a the party, but can't this be dynamically found from DT's compatible & model ?
> >>>> Since I'll probably need to add this to all boards, it seems like a duplicate of what's already in the DT.
> >>>
> >>> Part of the "fun" as to why we have the binding here is that while we
> >>> could use the top-level model property, there's not a corresponding one
> >>> for manufacturer. I'm fine ignoring the patch I posted here and having a
> >>> longer discussion about populating SMBIOS more usefully, globally, as I
> >>> think has been suggested a time or two.
> >>>
> >>
> >> I'm ok landing it with the same data as from the vendor.
> >> but couldn't we use the first top-level compatible as default smbios data ?
> >>
> >> compatible = "vendor1,board-name", "vendor1,soc-name";
> >>
> >> and translate to:
> >>
> >>
> >> smbios {
> >> system {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >>
> >> baseboard {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >>
> >> chassis {
> >> manufacturer = "vendor1";
> >> product = "board-name";
> >> };
> >> };
> >>
> >> since the vendor name should be already documented in the linux
> >> bindings, same for the board name.
> >> And we would be free to add some custom data in the DT if needed.
> >>
> >> Anyway, not sure it's the right place to discuss about that !
> >
> > That's essentially
> > https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-2-ilias.apalodimas@linaro.org/
> > which had a bunch of comments on 1/2:
> > https://patchwork.ozlabs.org/project/uboot/patch/20220906134426.53748-1-ilias.apalodimas@linaro.org/
> >
> > But I think that since then some thoughts on the subject have changed
> > and that approach might be more welcome now than it was then.
> >
>
> Thanks for the pointer, seems I had the exact same idea.
> Hope this will be re-spinned, I don't want to add this to the 45 amlogic
> boards when we have the necessary info already available and documented...
Fedora has carried this patch for some time for the same reason, a lot
of the tools in distros around support use dmidecode for HW
information and reporting "Unknown" meant there was lots of reports
against tools all over the place. I'd been asking Ilias to upstream it
for a while so I'm in full agreement here and he did mention he would
resend it soon :)
Peter
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-11-23 13:12 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-20 20:16 [PATCH] libretech-cc: Populate SMBIOS information Tom Rini
2023-11-21 2:16 ` Simon Glass
2023-11-21 9:18 ` Neil Armstrong
2023-11-21 13:15 ` Tom Rini
2023-11-21 13:46 ` Neil Armstrong
2023-11-21 14:09 ` Tom Rini
2023-11-21 14:43 ` Neil Armstrong
2023-11-21 15:07 ` Ilias Apalodimas
2023-11-22 20:02 ` Peter Robinson
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.