linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox
@ 2022-05-13 14:30 Ahmad Fatoum
  2022-10-01 22:45 ` Borislav Petkov
  0 siblings, 1 reply; 4+ messages in thread
From: Ahmad Fatoum @ 2022-05-13 14:30 UTC (permalink / raw)
  To: hpa, Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen,
	x86, Jonathan Corbet
  Cc: barebox, Ahmad Fatoum, linux-kernel, linux-doc

barebox built as EFI payload has been booting Linux on x86 with
type_of_loader=0xff since v2015.09.0.

Reserve 13, the next free id, so this can be used instead.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 Documentation/x86/boot.rst | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/x86/boot.rst b/Documentation/x86/boot.rst
index 894a19897005..240d084782a6 100644
--- a/Documentation/x86/boot.rst
+++ b/Documentation/x86/boot.rst
@@ -455,6 +455,7 @@ Protocol:	2.00+
 	11 Minimal Linux Bootloader
 	   <http://sebastian-plotz.blogspot.de>
 	12 OVMF UEFI virtualization stack
+	13 barebox
 	== =======================================
 
   Please contact <hpa@zytor.com> if you need a bootloader ID value assigned.
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox
  2022-05-13 14:30 [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox Ahmad Fatoum
@ 2022-10-01 22:45 ` Borislav Petkov
  2022-10-02  7:15   ` Ahmad Fatoum
  0 siblings, 1 reply; 4+ messages in thread
From: Borislav Petkov @ 2022-10-01 22:45 UTC (permalink / raw)
  To: Ahmad Fatoum
  Cc: hpa, Thomas Gleixner, Ingo Molnar, Dave Hansen, x86,
	Jonathan Corbet, barebox, linux-kernel, linux-doc

On Fri, May 13, 2022 at 04:30:39PM +0200, Ahmad Fatoum wrote:
> barebox built as EFI payload has been booting Linux on x86 with
> type_of_loader=0xff since v2015.09.0.

What is barebox?

That https://en.wikipedia.org/wiki/Barebox ?

That version number v2015 - am I to understand it that it has been
booting Linux since the year 2015?

In any case, it would be useful to explain a bit what it is here.

> Reserve 13, the next free id, so this can be used instead.

Sure, I guess, why not.

Thx.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox
  2022-10-01 22:45 ` Borislav Petkov
@ 2022-10-02  7:15   ` Ahmad Fatoum
  2022-10-02 11:29     ` Borislav Petkov
  0 siblings, 1 reply; 4+ messages in thread
From: Ahmad Fatoum @ 2022-10-02  7:15 UTC (permalink / raw)
  To: Borislav Petkov
  Cc: hpa, Thomas Gleixner, Ingo Molnar, Dave Hansen, x86,
	Jonathan Corbet, barebox, linux-kernel, linux-doc

Hello,

On 02.10.22 00:45, Borislav Petkov wrote:
> On Fri, May 13, 2022 at 04:30:39PM +0200, Ahmad Fatoum wrote:
>> barebox built as EFI payload has been booting Linux on x86 with
>> type_of_loader=0xff since v2015.09.0.
> 
> What is barebox?
> 
> That https://en.wikipedia.org/wiki/Barebox ?

Yes.

> 
> That version number v2015 - am I to understand it that it has been
> booting Linux since the year 2015?
> 
> In any case, it would be useful to explain a bit what it is here.

Release cadence is monthly. Starting with release v2015.09.0,
type_of_loader=0xff was being used. I figured it's about time, we
allocate an ID for it.

> 
>> Reserve 13, the next free id, so this can be used instead.
> 
> Sure, I guess, why not.
> 
> Thx.
Cheers,
Ahmad


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox
  2022-10-02  7:15   ` Ahmad Fatoum
@ 2022-10-02 11:29     ` Borislav Petkov
  0 siblings, 0 replies; 4+ messages in thread
From: Borislav Petkov @ 2022-10-02 11:29 UTC (permalink / raw)
  To: Ahmad Fatoum
  Cc: hpa, Thomas Gleixner, Ingo Molnar, Dave Hansen, x86,
	Jonathan Corbet, barebox, linux-kernel, linux-doc

On Sun, Oct 02, 2022 at 09:15:09AM +0200, Ahmad Fatoum wrote:
> Release cadence is monthly. Starting with release v2015.09.0,
> type_of_loader=0xff was being used. I figured it's about time, we
> allocate an ID for it.

Right, by "explain a bit what it is here" I meant to explain what it
is and add some references to the commit message. I.e., leave enough
breadcrumbs so that people like me can go and find that relevant info
when doing git archeology.

Thx.

-- 
Regards/Gruss,
    Boris.

https://people.kernel.org/tglx/notes-about-netiquette

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-02 11:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-13 14:30 [PATCH] Documentation: x86: boot: reserve type_of_loader=13 for barebox Ahmad Fatoum
2022-10-01 22:45 ` Borislav Petkov
2022-10-02  7:15   ` Ahmad Fatoum
2022-10-02 11:29     ` Borislav Petkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).