diff options
author | Vincent Chen <vincent.chen@sifive.com> | 2020-04-16 10:38:05 +0800 |
---|---|---|
committer | Palmer Dabbelt <palmerdabbelt@google.com> | 2020-05-18 11:38:10 -0700 |
commit | fe89bd2be8667d4d876329dd534dd59158e33b1f (patch) | |
tree | 10a9128ca4f1c4772ce114d88160b499f018a11a /arch/riscv/kernel/Makefile | |
parent | f83b04d36e52cc3d941120ec859374fcda36eb31 (diff) | |
download | linux-fe89bd2be8667d4d876329dd534dd59158e33b1f.tar.bz2 |
riscv: Add KGDB support
The skeleton of RISC-V KGDB port.
Signed-off-by: Vincent Chen <vincent.chen@sifive.com>
Reviewed-by: Palmer Dabbelt <palmerdabbelt@google.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch/riscv/kernel/Makefile')
-rw-r--r-- | arch/riscv/kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/kernel/Makefile b/arch/riscv/kernel/Makefile index d8bbd3207100..b355cf485671 100644 --- a/arch/riscv/kernel/Makefile +++ b/arch/riscv/kernel/Makefile @@ -51,5 +51,6 @@ ifeq ($(CONFIG_RISCV_SBI), y) obj-$(CONFIG_SMP) += cpu_ops_sbi.o endif obj-$(CONFIG_HOTPLUG_CPU) += cpu-hotplug.o +obj-$(CONFIG_KGDB) += kgdb.o clean: |