All of lore.kernel.org
 help / color / mirror / Atom feed
* arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 13:47 ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 13:47 UTC (permalink / raw)
  To: open list, linux-arm-kernel, linux-riscv, kernelnewbies

Hi All,

I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
I see that there is a defconfig available in arch/arm64/configs/defconfig
But I am not sure whether it will work for qemu-arm64, and by default
which machine type is supported.

I already have working setup for qemu-arm for both versatile and
vexpress machine. There is already a defconfig available for these
under arch/arm.
So I can build the kernel for it.

But, whether these defconfig are supported for arm64 ?
If anybody have setup for qemu-arm64 kernel, please share the steps.
About rootfs, I am planning to use the arm32 version of busybox itself.


Thanks,
Pintu

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

* arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 13:47 ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 13:47 UTC (permalink / raw)
  To: open list, linux-arm-kernel, linux-riscv, kernelnewbies

Hi All,

I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
I see that there is a defconfig available in arch/arm64/configs/defconfig
But I am not sure whether it will work for qemu-arm64, and by default
which machine type is supported.

I already have working setup for qemu-arm for both versatile and
vexpress machine. There is already a defconfig available for these
under arch/arm.
So I can build the kernel for it.

But, whether these defconfig are supported for arm64 ?
If anybody have setup for qemu-arm64 kernel, please share the steps.
About rootfs, I am planning to use the arm32 version of busybox itself.


Thanks,
Pintu

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 13:47 ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 13:47 UTC (permalink / raw)
  To: open list, linux-arm-kernel, linux-riscv, kernelnewbies

Hi All,

I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
I see that there is a defconfig available in arch/arm64/configs/defconfig
But I am not sure whether it will work for qemu-arm64, and by default
which machine type is supported.

I already have working setup for qemu-arm for both versatile and
vexpress machine. There is already a defconfig available for these
under arch/arm.
So I can build the kernel for it.

But, whether these defconfig are supported for arm64 ?
If anybody have setup for qemu-arm64 kernel, please share the steps.
About rootfs, I am planning to use the arm32 version of busybox itself.


Thanks,
Pintu

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 13:47 ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 13:47 UTC (permalink / raw)
  To: open list, linux-arm-kernel, linux-riscv, kernelnewbies

Hi All,

I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
I see that there is a defconfig available in arch/arm64/configs/defconfig
But I am not sure whether it will work for qemu-arm64, and by default
which machine type is supported.

I already have working setup for qemu-arm for both versatile and
vexpress machine. There is already a defconfig available for these
under arch/arm.
So I can build the kernel for it.

But, whether these defconfig are supported for arm64 ?
If anybody have setup for qemu-arm64 kernel, please share the steps.
About rootfs, I am planning to use the arm32 version of busybox itself.


Thanks,
Pintu

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
  2019-02-22 13:47 ` Pintu Agarwal
  (?)
  (?)
@ 2019-02-22 14:10   ` Mark Rutland
  -1 siblings, 0 replies; 12+ messages in thread
From: Mark Rutland @ 2019-02-22 14:10 UTC (permalink / raw)
  To: Pintu Agarwal; +Cc: open list, linux-arm-kernel, linux-riscv, kernelnewbies

On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> Hi All,

Hi,

> I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> I see that there is a defconfig available in arch/arm64/configs/defconfig
> But I am not sure whether it will work for qemu-arm64, and by default
> which machine type is supported.
> 
> I already have working setup for qemu-arm for both versatile and
> vexpress machine. There is already a defconfig available for these
> under arch/arm.
> So I can build the kernel for it.
> 
> But, whether these defconfig are supported for arm64 ?
> If anybody have setup for qemu-arm64 kernel, please share the steps.
> About rootfs, I am planning to use the arm32 version of busybox itself.

The arm64 defconfig is intended to work for all platforms.

I use that with qemu's '-machine virt'. Assuming you use virtio-net and
virtio-block, no additional drivers are required.

For example, I can boot a defconfig kernel using the followign QEMU options:

qemu-system-aarch64 \
        -m 2048 -smp 4 \
        -net nic \
        -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
        -nographic \
        -no-reboot \
        -machine virt,accel=kvm,gic_version=host \
        -cpu host \
        -hda ${FILESYSTEM} \
        -snapshot \
        -kernel ${KERNEL} \
        -append "earlycon root=/dev/vda panic_on_warn"

Thanks,
Mark.

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 14:10   ` Mark Rutland
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Rutland @ 2019-02-22 14:10 UTC (permalink / raw)
  To: Pintu Agarwal; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> Hi All,

Hi,

> I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> I see that there is a defconfig available in arch/arm64/configs/defconfig
> But I am not sure whether it will work for qemu-arm64, and by default
> which machine type is supported.
> 
> I already have working setup for qemu-arm for both versatile and
> vexpress machine. There is already a defconfig available for these
> under arch/arm.
> So I can build the kernel for it.
> 
> But, whether these defconfig are supported for arm64 ?
> If anybody have setup for qemu-arm64 kernel, please share the steps.
> About rootfs, I am planning to use the arm32 version of busybox itself.

The arm64 defconfig is intended to work for all platforms.

I use that with qemu's '-machine virt'. Assuming you use virtio-net and
virtio-block, no additional drivers are required.

For example, I can boot a defconfig kernel using the followign QEMU options:

qemu-system-aarch64 \
        -m 2048 -smp 4 \
        -net nic \
        -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
        -nographic \
        -no-reboot \
        -machine virt,accel=kvm,gic_version=host \
        -cpu host \
        -hda ${FILESYSTEM} \
        -snapshot \
        -kernel ${KERNEL} \
        -append "earlycon root=/dev/vda panic_on_warn"

Thanks,
Mark.

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 14:10   ` Mark Rutland
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Rutland @ 2019-02-22 14:10 UTC (permalink / raw)
  To: Pintu Agarwal; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> Hi All,

Hi,

> I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> I see that there is a defconfig available in arch/arm64/configs/defconfig
> But I am not sure whether it will work for qemu-arm64, and by default
> which machine type is supported.
> 
> I already have working setup for qemu-arm for both versatile and
> vexpress machine. There is already a defconfig available for these
> under arch/arm.
> So I can build the kernel for it.
> 
> But, whether these defconfig are supported for arm64 ?
> If anybody have setup for qemu-arm64 kernel, please share the steps.
> About rootfs, I am planning to use the arm32 version of busybox itself.

The arm64 defconfig is intended to work for all platforms.

I use that with qemu's '-machine virt'. Assuming you use virtio-net and
virtio-block, no additional drivers are required.

For example, I can boot a defconfig kernel using the followign QEMU options:

qemu-system-aarch64 \
        -m 2048 -smp 4 \
        -net nic \
        -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
        -nographic \
        -no-reboot \
        -machine virt,accel=kvm,gic_version=host \
        -cpu host \
        -hda ${FILESYSTEM} \
        -snapshot \
        -kernel ${KERNEL} \
        -append "earlycon root=/dev/vda panic_on_warn"

Thanks,
Mark.

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 14:10   ` Mark Rutland
  0 siblings, 0 replies; 12+ messages in thread
From: Mark Rutland @ 2019-02-22 14:10 UTC (permalink / raw)
  To: Pintu Agarwal; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> Hi All,

Hi,

> I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> I see that there is a defconfig available in arch/arm64/configs/defconfig
> But I am not sure whether it will work for qemu-arm64, and by default
> which machine type is supported.
> 
> I already have working setup for qemu-arm for both versatile and
> vexpress machine. There is already a defconfig available for these
> under arch/arm.
> So I can build the kernel for it.
> 
> But, whether these defconfig are supported for arm64 ?
> If anybody have setup for qemu-arm64 kernel, please share the steps.
> About rootfs, I am planning to use the arm32 version of busybox itself.

The arm64 defconfig is intended to work for all platforms.

I use that with qemu's '-machine virt'. Assuming you use virtio-net and
virtio-block, no additional drivers are required.

For example, I can boot a defconfig kernel using the followign QEMU options:

qemu-system-aarch64 \
        -m 2048 -smp 4 \
        -net nic \
        -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
        -nographic \
        -no-reboot \
        -machine virt,accel=kvm,gic_version=host \
        -cpu host \
        -hda ${FILESYSTEM} \
        -snapshot \
        -kernel ${KERNEL} \
        -append "earlycon root=/dev/vda panic_on_warn"

Thanks,
Mark.

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
  2019-02-22 14:10   ` Mark Rutland
  (?)
  (?)
@ 2019-02-22 16:50     ` Pintu Agarwal
  -1 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 16:50 UTC (permalink / raw)
  To: Mark Rutland; +Cc: open list, linux-arm-kernel, linux-riscv, kernelnewbies

On Fri, Feb 22, 2019 at 7:41 PM Mark Rutland <mark.rutland@arm.com> wrote:
>
> On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> > Hi All,
>
> Hi,
>
> > I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> > I see that there is a defconfig available in arch/arm64/configs/defconfig
> > But I am not sure whether it will work for qemu-arm64, and by default
> > which machine type is supported.
> >
> > I already have working setup for qemu-arm for both versatile and
> > vexpress machine. There is already a defconfig available for these
> > under arch/arm.
> > So I can build the kernel for it.
> >
> > But, whether these defconfig are supported for arm64 ?
> > If anybody have setup for qemu-arm64 kernel, please share the steps.
> > About rootfs, I am planning to use the arm32 version of busybox itself.
>
> The arm64 defconfig is intended to work for all platforms.
>
> I use that with qemu's '-machine virt'. Assuming you use virtio-net and
> virtio-block, no additional drivers are required.
>
> For example, I can boot a defconfig kernel using the followign QEMU options:
>
> qemu-system-aarch64 \
>         -m 2048 -smp 4 \
>         -net nic \
>         -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
>         -nographic \
>         -no-reboot \
>         -machine virt,accel=kvm,gic_version=host \
>         -cpu host \
>         -hda ${FILESYSTEM} \
>         -snapshot \
>         -kernel ${KERNEL} \
>         -append "earlycon root=/dev/vda panic_on_warn"
>
> Thanks,
> Mark.

oh thank you so much for your information.
I was exactly looking for this option.
Let me try it on Monday.


Thanks

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 16:50     ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 16:50 UTC (permalink / raw)
  To: Mark Rutland; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 7:41 PM Mark Rutland <mark.rutland@arm.com> wrote:
>
> On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> > Hi All,
>
> Hi,
>
> > I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> > I see that there is a defconfig available in arch/arm64/configs/defconfig
> > But I am not sure whether it will work for qemu-arm64, and by default
> > which machine type is supported.
> >
> > I already have working setup for qemu-arm for both versatile and
> > vexpress machine. There is already a defconfig available for these
> > under arch/arm.
> > So I can build the kernel for it.
> >
> > But, whether these defconfig are supported for arm64 ?
> > If anybody have setup for qemu-arm64 kernel, please share the steps.
> > About rootfs, I am planning to use the arm32 version of busybox itself.
>
> The arm64 defconfig is intended to work for all platforms.
>
> I use that with qemu's '-machine virt'. Assuming you use virtio-net and
> virtio-block, no additional drivers are required.
>
> For example, I can boot a defconfig kernel using the followign QEMU options:
>
> qemu-system-aarch64 \
>         -m 2048 -smp 4 \
>         -net nic \
>         -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
>         -nographic \
>         -no-reboot \
>         -machine virt,accel=kvm,gic_version=host \
>         -cpu host \
>         -hda ${FILESYSTEM} \
>         -snapshot \
>         -kernel ${KERNEL} \
>         -append "earlycon root=/dev/vda panic_on_warn"
>
> Thanks,
> Mark.

oh thank you so much for your information.
I was exactly looking for this option.
Let me try it on Monday.


Thanks

_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 16:50     ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 16:50 UTC (permalink / raw)
  To: Mark Rutland; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 7:41 PM Mark Rutland <mark.rutland@arm.com> wrote:
>
> On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> > Hi All,
>
> Hi,
>
> > I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> > I see that there is a defconfig available in arch/arm64/configs/defconfig
> > But I am not sure whether it will work for qemu-arm64, and by default
> > which machine type is supported.
> >
> > I already have working setup for qemu-arm for both versatile and
> > vexpress machine. There is already a defconfig available for these
> > under arch/arm.
> > So I can build the kernel for it.
> >
> > But, whether these defconfig are supported for arm64 ?
> > If anybody have setup for qemu-arm64 kernel, please share the steps.
> > About rootfs, I am planning to use the arm32 version of busybox itself.
>
> The arm64 defconfig is intended to work for all platforms.
>
> I use that with qemu's '-machine virt'. Assuming you use virtio-net and
> virtio-block, no additional drivers are required.
>
> For example, I can boot a defconfig kernel using the followign QEMU options:
>
> qemu-system-aarch64 \
>         -m 2048 -smp 4 \
>         -net nic \
>         -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
>         -nographic \
>         -no-reboot \
>         -machine virt,accel=kvm,gic_version=host \
>         -cpu host \
>         -hda ${FILESYSTEM} \
>         -snapshot \
>         -kernel ${KERNEL} \
>         -append "earlycon root=/dev/vda panic_on_warn"
>
> Thanks,
> Mark.

oh thank you so much for your information.
I was exactly looking for this option.
Let me try it on Monday.


Thanks

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: arm64 Kernel build for qemu-system-aarch64 ?
@ 2019-02-22 16:50     ` Pintu Agarwal
  0 siblings, 0 replies; 12+ messages in thread
From: Pintu Agarwal @ 2019-02-22 16:50 UTC (permalink / raw)
  To: Mark Rutland; +Cc: linux-riscv, open list, linux-arm-kernel, kernelnewbies

On Fri, Feb 22, 2019 at 7:41 PM Mark Rutland <mark.rutland@arm.com> wrote:
>
> On Fri, Feb 22, 2019 at 07:17:00PM +0530, Pintu Agarwal wrote:
> > Hi All,
>
> Hi,
>
> > I want to build Linux Kernel 4.20 for arm64 and use it on qemu-arm64.
> > I see that there is a defconfig available in arch/arm64/configs/defconfig
> > But I am not sure whether it will work for qemu-arm64, and by default
> > which machine type is supported.
> >
> > I already have working setup for qemu-arm for both versatile and
> > vexpress machine. There is already a defconfig available for these
> > under arch/arm.
> > So I can build the kernel for it.
> >
> > But, whether these defconfig are supported for arm64 ?
> > If anybody have setup for qemu-arm64 kernel, please share the steps.
> > About rootfs, I am planning to use the arm32 version of busybox itself.
>
> The arm64 defconfig is intended to work for all platforms.
>
> I use that with qemu's '-machine virt'. Assuming you use virtio-net and
> virtio-block, no additional drivers are required.
>
> For example, I can boot a defconfig kernel using the followign QEMU options:
>
> qemu-system-aarch64 \
>         -m 2048 -smp 4 \
>         -net nic \
>         -net user,host=10.0.2.10,hostfwd=tcp::65022-:22 \
>         -nographic \
>         -no-reboot \
>         -machine virt,accel=kvm,gic_version=host \
>         -cpu host \
>         -hda ${FILESYSTEM} \
>         -snapshot \
>         -kernel ${KERNEL} \
>         -append "earlycon root=/dev/vda panic_on_warn"
>
> Thanks,
> Mark.

oh thank you so much for your information.
I was exactly looking for this option.
Let me try it on Monday.


Thanks

_______________________________________________
Kernelnewbies mailing list
Kernelnewbies@kernelnewbies.org
https://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies

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

end of thread, other threads:[~2019-02-22 16:51 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-22 13:47 arm64 Kernel build for qemu-system-aarch64 ? Pintu Agarwal
2019-02-22 13:47 ` Pintu Agarwal
2019-02-22 13:47 ` Pintu Agarwal
2019-02-22 13:47 ` Pintu Agarwal
2019-02-22 14:10 ` Mark Rutland
2019-02-22 14:10   ` Mark Rutland
2019-02-22 14:10   ` Mark Rutland
2019-02-22 14:10   ` Mark Rutland
2019-02-22 16:50   ` Pintu Agarwal
2019-02-22 16:50     ` Pintu Agarwal
2019-02-22 16:50     ` Pintu Agarwal
2019-02-22 16:50     ` Pintu Agarwal

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.