Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-24 Thread Jiaxun Yang
在2024年12月24日十二月 上午4:03,bibo mao写道: > On 2024/12/23 上午8:30, Jiaxun Yang wrote: >> Many distros are shipping raw kernel images (i.e. vmlinux.efi). >> >> Support booting such image by parsing header as per Linux's >> specification [1]. >> >> [1]: https://docs.kernel.org/arch/loongarch/booting.htm

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread bibo mao
On 2024/12/23 上午8:30, Jiaxun Yang wrote: Many distros are shipping raw kernel images (i.e. vmlinux.efi). Support booting such image by parsing header as per Linux's specification [1]. [1]: https://docs.kernel.org/arch/loongarch/booting.html Signed-off-by: Jiaxun Yang --- It is based on my

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread bibo mao
On 2024/12/24 上午10:31, Jiaxun Yang wrote: 在2024年12月24日十二月 上午1:25,bibo mao写道: On 2024/12/24 上午9:15, Jiaxun Yang wrote: 在2024年12月24日十二月 上午12:56,bibo mao写道: Sorry, I do not know the background. Now kernel image with EFI format can boot if uefi bios is provided. What is this patch to do?

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread Jiaxun Yang
在2024年12月24日十二月 上午1:25,bibo mao写道: > On 2024/12/24 上午9:15, Jiaxun Yang wrote: >> >> >> 在2024年12月24日十二月 上午12:56,bibo mao写道: >>> Sorry, I do not know the background. >>> Now kernel image with EFI format can boot if uefi bios is provided. >>> >>> What is this patch to do? is it to direct boot ke

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread bibo mao
On 2024/12/24 上午9:15, Jiaxun Yang wrote: 在2024年12月24日十二月 上午12:56,bibo mao写道: Sorry, I do not know the background. Now kernel image with EFI format can boot if uefi bios is provided. What is this patch to do? is it to direct boot kernel with EFI format without UEFI bios parameter? Yes, i

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread Jiaxun Yang
在2024年12月24日十二月 上午12:56,bibo mao写道: > Sorry, I do not know the background. > Now kernel image with EFI format can boot if uefi bios is provided. > > What is this patch to do? is it to direct boot kernel with EFI format > without UEFI bios parameter? Yes, it’s now capable for booting vmlinux.e

Re: [PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-23 Thread bibo mao
Sorry, I do not know the background. Now kernel image with EFI format can boot if uefi bios is provided. What is this patch to do? is it to direct boot kernel with EFI format without UEFI bios parameter? Regards Bibo Mao On 2024/12/23 上午8:30, Jiaxun Yang wrote: Many distros are shipping raw

[PATCH] hw/loongarch/boot: Support Linux raw boot image

2024-12-22 Thread Jiaxun Yang
Many distros are shipping raw kernel images (i.e. vmlinux.efi). Support booting such image by parsing header as per Linux's specification [1]. [1]: https://docs.kernel.org/arch/loongarch/booting.html Signed-off-by: Jiaxun Yang --- It is based on my previous booting protocol patch --- hw/loonga