Kexec Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] kexec/kdump: Minor Documentation updates for arm64 and Image
@ 2017-05-18 10:53 Bharat Bhushan
  2017-05-22  7:09 ` Pratyush Anand
  0 siblings, 1 reply; 3+ messages in thread
From: Bharat Bhushan @ 2017-05-18 10:53 UTC (permalink / raw)
  To: dyoung, bhe, vgoyal, corbet, takahiro.akashi, panand
  Cc: Bharat Bhushan, kexec, linux-kernel, linux-doc

This patch have minor updates in Documentation for arm64i as
relocatable kernel.
Also this patch updates documentation for using uncompressed
image "Image" which is used for ARM64.

Signed-off-by: Bharat Bhushan <Bharat.Bhushan@nxp.com>
---
v1->v2
  - "a uncompressed" replaced with "an uncompressed"

 Documentation/kdump/kdump.txt | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/Documentation/kdump/kdump.txt b/Documentation/kdump/kdump.txt
index 615434d..5181445 100644
--- a/Documentation/kdump/kdump.txt
+++ b/Documentation/kdump/kdump.txt
@@ -112,8 +112,8 @@ There are two possible methods of using Kdump.
 2) Or use the system kernel binary itself as dump-capture kernel and there is
    no need to build a separate dump-capture kernel. This is possible
    only with the architectures which support a relocatable kernel. As
-   of today, i386, x86_64, ppc64, ia64 and arm architectures support relocatable
-   kernel.
+   of today, i386, x86_64, ppc64, ia64, arm and arm64 architectures support
+   relocatable kernel.
 
 Building a relocatable kernel is advantageous from the point of view that
 one does not have to build a second kernel for capturing the dump. But
@@ -339,7 +339,7 @@ For arm:
 For arm64:
 	- Use vmlinux or Image
 
-If you are using a uncompressed vmlinux image then use following command
+If you are using an uncompressed vmlinux image then use following command
 to load dump-capture kernel.
 
    kexec -p <dump-capture-kernel-vmlinux-image> \
@@ -361,6 +361,12 @@ to load dump-capture kernel.
    --dtb=<dtb-for-dump-capture-kernel> \
    --append="root=<root-dev> <arch-specific-options>"
 
+If you are using an uncompressed Image, then use following command
+to load dump-capture kernel.
+
+   kexec -p <dump-capture-kernel-Image> \
+   --initrd=<initrd-for-dump-capture-kernel> \
+   --append="root=<root-dev> <arch-specific-options>"
 
 Please note, that --args-linux does not need to be specified for ia64.
 It is planned to make this a no-op on that architecture, but for now
-- 
1.9.3


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

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

* Re: [PATCH v2] kexec/kdump: Minor Documentation updates for arm64 and Image
  2017-05-18 10:53 [PATCH v2] kexec/kdump: Minor Documentation updates for arm64 and Image Bharat Bhushan
@ 2017-05-22  7:09 ` Pratyush Anand
  2017-05-22 11:46   ` Simon Horman
  0 siblings, 1 reply; 3+ messages in thread
From: Pratyush Anand @ 2017-05-22  7:09 UTC (permalink / raw)
  To: Bharat Bhushan, dyoung, bhe, vgoyal, corbet, takahiro.akashi
  Cc: kexec, linux-kernel, linux-doc



On Thursday 18 May 2017 04:23 PM, Bharat Bhushan wrote:
> This patch have minor updates in Documentation for arm64i as
                                                     arm64
> relocatable kernel.
> Also this patch updates documentation for using uncompressed
> image "Image" which is used for ARM64.
>
> Signed-off-by: Bharat Bhushan <Bharat.Bhushan@nxp.com>
> ---
> v1->v2
>   - "a uncompressed" replaced with "an uncompressed"

Reviewed-by: Pratyush Anand <panand@redhat.com>

>
>  Documentation/kdump/kdump.txt | 12 +++++++++---
>  1 file changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/Documentation/kdump/kdump.txt b/Documentation/kdump/kdump.txt
> index 615434d..5181445 100644
> --- a/Documentation/kdump/kdump.txt
> +++ b/Documentation/kdump/kdump.txt
> @@ -112,8 +112,8 @@ There are two possible methods of using Kdump.
>  2) Or use the system kernel binary itself as dump-capture kernel and there is
>     no need to build a separate dump-capture kernel. This is possible
>     only with the architectures which support a relocatable kernel. As
> -   of today, i386, x86_64, ppc64, ia64 and arm architectures support relocatable
> -   kernel.
> +   of today, i386, x86_64, ppc64, ia64, arm and arm64 architectures support
> +   relocatable kernel.
>
>  Building a relocatable kernel is advantageous from the point of view that
>  one does not have to build a second kernel for capturing the dump. But
> @@ -339,7 +339,7 @@ For arm:
>  For arm64:
>  	- Use vmlinux or Image
>
> -If you are using a uncompressed vmlinux image then use following command
> +If you are using an uncompressed vmlinux image then use following command
>  to load dump-capture kernel.
>
>     kexec -p <dump-capture-kernel-vmlinux-image> \
> @@ -361,6 +361,12 @@ to load dump-capture kernel.
>     --dtb=<dtb-for-dump-capture-kernel> \
>     --append="root=<root-dev> <arch-specific-options>"
>
> +If you are using an uncompressed Image, then use following command
> +to load dump-capture kernel.
> +
> +   kexec -p <dump-capture-kernel-Image> \
> +   --initrd=<initrd-for-dump-capture-kernel> \
> +   --append="root=<root-dev> <arch-specific-options>"
>
>  Please note, that --args-linux does not need to be specified for ia64.
>  It is planned to make this a no-op on that architecture, but for now
>

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

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

* Re: [PATCH v2] kexec/kdump: Minor Documentation updates for arm64 and Image
  2017-05-22  7:09 ` Pratyush Anand
@ 2017-05-22 11:46   ` Simon Horman
  0 siblings, 0 replies; 3+ messages in thread
From: Simon Horman @ 2017-05-22 11:46 UTC (permalink / raw)
  To: Pratyush Anand
  Cc: bhe, corbet, Bharat Bhushan, linux-doc, kexec, linux-kernel,
	takahiro.akashi, dyoung, vgoyal

On Mon, May 22, 2017 at 12:39:59PM +0530, Pratyush Anand wrote:
> 
> 
> On Thursday 18 May 2017 04:23 PM, Bharat Bhushan wrote:
> >This patch have minor updates in Documentation for arm64i as
>                                                     arm64
> >relocatable kernel.
> >Also this patch updates documentation for using uncompressed
> >image "Image" which is used for ARM64.
> >
> >Signed-off-by: Bharat Bhushan <Bharat.Bhushan@nxp.com>
> >---
> >v1->v2
> >  - "a uncompressed" replaced with "an uncompressed"
> 
> Reviewed-by: Pratyush Anand <panand@redhat.com>

Reviewed-by: Simon Horman <horms@verge.net.au>

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

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

end of thread, other threads:[~2017-05-22 11:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-18 10:53 [PATCH v2] kexec/kdump: Minor Documentation updates for arm64 and Image Bharat Bhushan
2017-05-22  7:09 ` Pratyush Anand
2017-05-22 11:46   ` Simon Horman

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