[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 04/10] RISC-V: Add setjmp implementation
From: |
Daniel Kiper |
Subject: |
Re: [PATCH v3 04/10] RISC-V: Add setjmp implementation |
Date: |
Wed, 21 Nov 2018 16:31:59 +0100 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
On Wed, Nov 14, 2018 at 06:27:33PM +0100, Alexander Graf wrote:
> This patch adds a 32/64 capable setjmp implementation for RISC-V.
>
> Signed-off-by: Alexander Graf <address@hidden>
> Reviewed-by: Alistair Francis <address@hidden>
> ---
> grub-core/lib/riscv/setjmp.S | 82
> +++++++++++++++++++++++++++++++++++++++++++
> include/grub/riscv32/setjmp.h | 27 ++++++++++++++
> include/grub/riscv64/setjmp.h | 27 ++++++++++++++
> 3 files changed, 136 insertions(+)
> create mode 100644 grub-core/lib/riscv/setjmp.S
> create mode 100644 include/grub/riscv32/setjmp.h
> create mode 100644 include/grub/riscv64/setjmp.h
>
> diff --git a/grub-core/lib/riscv/setjmp.S b/grub-core/lib/riscv/setjmp.S
> new file mode 100644
> index 000000000..053e2e6ba
> --- /dev/null
> +++ b/grub-core/lib/riscv/setjmp.S
> @@ -0,0 +1,82 @@
> +/*
> + * GRUB -- GRand Unified Bootloader
> + * Copyright (C) 2013 Free Software Foundation, Inc.
s/2013/2018/ Please fix this here and in other places/patches.
Daniel
[PATCH v3 04/10] RISC-V: Add setjmp implementation, Alexander Graf, 2018/11/14
[PATCH v3 05/10] RISC-V: Add early startup code, Alexander Graf, 2018/11/14
[PATCH v3 02/10] PE: Add RISC-V definitions, Alexander Graf, 2018/11/14
[PATCH v3 08/10] RISC-V: Add auxiliary files, Alexander Graf, 2018/11/14
Re: [PATCH v3 08/10] RISC-V: Add auxiliary files, Daniel Kiper, 2018/11/21