public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets.
@ 2019-07-15 17:29 Vagrant Cascadian
  2019-09-26  0:57 ` Vagrant Cascadian
  0 siblings, 1 reply; 4+ messages in thread
From: Vagrant Cascadian @ 2019-07-15 17:29 UTC (permalink / raw)
  To: u-boot

This allows booting an initrd without headers generated by mkimage,
which is generally needed when using distro_bootcmd with
extlinux-style boot menus.

Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
---

 configs/qemu-riscv64_defconfig       | 1 +
 configs/qemu-riscv64_smode_defconfig | 1 +
 2 files changed, 2 insertions(+)

diff --git a/configs/qemu-riscv64_defconfig b/configs/qemu-riscv64_defconfig
index 19a5849226..c0c893a90c 100644
--- a/configs/qemu-riscv64_defconfig
+++ b/configs/qemu-riscv64_defconfig
@@ -8,3 +8,4 @@ CONFIG_DISPLAY_CPUINFO=y
 CONFIG_DISPLAY_BOARDINFO=y
 # CONFIG_CMD_MII is not set
 CONFIG_OF_PRIOR_STAGE=y
+CONFIG_SUPPORT_RAW_INITRD=y
diff --git a/configs/qemu-riscv64_smode_defconfig b/configs/qemu-riscv64_smode_defconfig
index 74743a5ebe..ef7d358daa 100644
--- a/configs/qemu-riscv64_smode_defconfig
+++ b/configs/qemu-riscv64_smode_defconfig
@@ -9,3 +9,4 @@ CONFIG_DISPLAY_CPUINFO=y
 CONFIG_DISPLAY_BOARDINFO=y
 # CONFIG_CMD_MII is not set
 CONFIG_OF_PRIOR_STAGE=y
+CONFIG_SUPPORT_RAW_INITRD=y
-- 
2.20.1

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

* [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets.
  2019-07-15 17:29 [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets Vagrant Cascadian
@ 2019-09-26  0:57 ` Vagrant Cascadian
  2019-09-26  2:18   ` Bin Meng
  0 siblings, 1 reply; 4+ messages in thread
From: Vagrant Cascadian @ 2019-09-26  0:57 UTC (permalink / raw)
  To: u-boot

Haven't heard any comment on this; is there someone better to CC?

Would be really nice if it could be considered for v2019.10.

Thanks!

live well,
  vagrant

On 2019-07-15, Vagrant Cascadian wrote:
> This allows booting an initrd without headers generated by mkimage,
> which is generally needed when using distro_bootcmd with
> extlinux-style boot menus.
>
> Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
> ---
>
>  configs/qemu-riscv64_defconfig       | 1 +
>  configs/qemu-riscv64_smode_defconfig | 1 +
>  2 files changed, 2 insertions(+)
>
> diff --git a/configs/qemu-riscv64_defconfig b/configs/qemu-riscv64_defconfig
> index 19a5849226..c0c893a90c 100644
> --- a/configs/qemu-riscv64_defconfig
> +++ b/configs/qemu-riscv64_defconfig
> @@ -8,3 +8,4 @@ CONFIG_DISPLAY_CPUINFO=y
>  CONFIG_DISPLAY_BOARDINFO=y
>  # CONFIG_CMD_MII is not set
>  CONFIG_OF_PRIOR_STAGE=y
> +CONFIG_SUPPORT_RAW_INITRD=y
> diff --git a/configs/qemu-riscv64_smode_defconfig b/configs/qemu-riscv64_smode_defconfig
> index 74743a5ebe..ef7d358daa 100644
> --- a/configs/qemu-riscv64_smode_defconfig
> +++ b/configs/qemu-riscv64_smode_defconfig
> @@ -9,3 +9,4 @@ CONFIG_DISPLAY_CPUINFO=y
>  CONFIG_DISPLAY_BOARDINFO=y
>  # CONFIG_CMD_MII is not set
>  CONFIG_OF_PRIOR_STAGE=y
> +CONFIG_SUPPORT_RAW_INITRD=y
> -- 
> 2.20.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 227 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190925/4e974a28/attachment.sig>

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

* [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets.
  2019-09-26  0:57 ` Vagrant Cascadian
@ 2019-09-26  2:18   ` Bin Meng
  2019-09-26  2:43     ` Vagrant Cascadian
  0 siblings, 1 reply; 4+ messages in thread
From: Bin Meng @ 2019-09-26  2:18 UTC (permalink / raw)
  To: u-boot

Hi Vagrant,

On Thu, Sep 26, 2019 at 8:57 AM Vagrant Cascadian <vagrant@debian.org> wrote:
>
> Haven't heard any comment on this; is there someone better to CC?
>

Sorry I missed this.

> Would be really nice if it could be considered for v2019.10.
>
> Thanks!
>
> live well,
>   vagrant
>
> On 2019-07-15, Vagrant Cascadian wrote:
> > This allows booting an initrd without headers generated by mkimage,
> > which is generally needed when using distro_bootcmd with
> > extlinux-style boot menus.
> >
> > Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
> > ---
> >
> >  configs/qemu-riscv64_defconfig       | 1 +
> >  configs/qemu-riscv64_smode_defconfig | 1 +
> >  2 files changed, 2 insertions(+)
> >
> > diff --git a/configs/qemu-riscv64_defconfig b/configs/qemu-riscv64_defconfig
> > index 19a5849226..c0c893a90c 100644
> > --- a/configs/qemu-riscv64_defconfig
> > +++ b/configs/qemu-riscv64_defconfig
> > @@ -8,3 +8,4 @@ CONFIG_DISPLAY_CPUINFO=y
> >  CONFIG_DISPLAY_BOARDINFO=y
> >  # CONFIG_CMD_MII is not set
> >  CONFIG_OF_PRIOR_STAGE=y
> > +CONFIG_SUPPORT_RAW_INITRD=y
> > diff --git a/configs/qemu-riscv64_smode_defconfig b/configs/qemu-riscv64_smode_defconfig
> > index 74743a5ebe..ef7d358daa 100644
> > --- a/configs/qemu-riscv64_smode_defconfig
> > +++ b/configs/qemu-riscv64_smode_defconfig
> > @@ -9,3 +9,4 @@ CONFIG_DISPLAY_CPUINFO=y
> >  CONFIG_DISPLAY_BOARDINFO=y
> >  # CONFIG_CMD_MII is not set
> >  CONFIG_OF_PRIOR_STAGE=y
> > +CONFIG_SUPPORT_RAW_INITRD=y

Isn't this already selected by DISTRO_DEFAULTS?

Regards,
Bin

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

* [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets.
  2019-09-26  2:18   ` Bin Meng
@ 2019-09-26  2:43     ` Vagrant Cascadian
  0 siblings, 0 replies; 4+ messages in thread
From: Vagrant Cascadian @ 2019-09-26  2:43 UTC (permalink / raw)
  To: u-boot

On 2019-09-26, Bin Meng wrote:
> On Thu, Sep 26, 2019 at 8:57 AM Vagrant Cascadian <vagrant@debian.org> wrote:
>> On 2019-07-15, Vagrant Cascadian wrote:
>> > This allows booting an initrd without headers generated by mkimage,
>> > which is generally needed when using distro_bootcmd with
>> > extlinux-style boot menus.
>> >
>> > Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
>> > ---
>> >
>> >  configs/qemu-riscv64_defconfig       | 1 +
>> >  configs/qemu-riscv64_smode_defconfig | 1 +
>> >  2 files changed, 2 insertions(+)
>> >
>> > diff --git a/configs/qemu-riscv64_defconfig b/configs/qemu-riscv64_defconfig
>> > index 19a5849226..c0c893a90c 100644
>> > --- a/configs/qemu-riscv64_defconfig
>> > +++ b/configs/qemu-riscv64_defconfig
>> > @@ -8,3 +8,4 @@ CONFIG_DISPLAY_CPUINFO=y
>> >  CONFIG_DISPLAY_BOARDINFO=y
>> >  # CONFIG_CMD_MII is not set
>> >  CONFIG_OF_PRIOR_STAGE=y
>> > +CONFIG_SUPPORT_RAW_INITRD=y
>> > diff --git a/configs/qemu-riscv64_smode_defconfig b/configs/qemu-riscv64_smode_defconfig
>> > index 74743a5ebe..ef7d358daa 100644
>> > --- a/configs/qemu-riscv64_smode_defconfig
>> > +++ b/configs/qemu-riscv64_smode_defconfig
>> > @@ -9,3 +9,4 @@ CONFIG_DISPLAY_CPUINFO=y
>> >  CONFIG_DISPLAY_BOARDINFO=y
>> >  # CONFIG_CMD_MII is not set
>> >  CONFIG_OF_PRIOR_STAGE=y
>> > +CONFIG_SUPPORT_RAW_INITRD=y
>
> Isn't this already selected by DISTRO_DEFAULTS?

You're right; it must be leftovers on my end from very old patch series.

No need to add this patch, sorry for the noise!

live well,
  vagrant
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 227 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190925/97a4700b/attachment.sig>

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

end of thread, other threads:[~2019-09-26  2:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-15 17:29 [U-Boot] [PATCH] Support raw initrd for qemu riscv64 targets Vagrant Cascadian
2019-09-26  0:57 ` Vagrant Cascadian
2019-09-26  2:18   ` Bin Meng
2019-09-26  2:43     ` Vagrant Cascadian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox