All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] riscv: make riscv build happier
@ 2020-05-11  2:19 Kefeng Wang
  2020-05-11  2:19   ` Kefeng Wang
                   ` (10 more replies)
  0 siblings, 11 replies; 52+ messages in thread
From: Kefeng Wang @ 2020-05-11  2:19 UTC (permalink / raw)
  To: Paul Walmsley, Palmer Dabbelt, Albert Ou, linux-riscv, linux-kernel
  Cc: Kefeng Wang

When add RISCV arch to huawei build test, there are some build
issue, let's fix them to make riscv build happier :) 

Those patches is rebased on next-20200508.

Kefeng Wang (10):
  riscv: Fix unmet direct dependencies built based on SOC_VIRT
  riscv: stacktrace: Fix undefined reference to `walk_stackframe'
  riscv: Add pgprot_writecombine/device and PAGE_SHARED defination if
    NOMMU
  riscv: Fix print_vm_layout build error if NOMMU
  riscv: Disable ARCH_HAS_DEBUG_WX if NOMMU
  riscv: Disable ARCH_HAS_DEBUG_VIRTUAL if NOMMU
  riscv: Make SYS_SUPPORTS_HUGETLBFS depends on MMU
  riscv: pgtable: Fix __kernel_map_pages build error if NOMMU
  timer-riscv: Fix undefined riscv_time_val
  riscv: mmiowb: Fix implicit declaration of function 'smp_processor_id'

 arch/riscv/Kconfig                |  5 +++--
 arch/riscv/Kconfig.socs           | 17 +++++++++--------
 arch/riscv/include/asm/mmio.h     |  2 ++
 arch/riscv/include/asm/mmiowb.h   |  1 +
 arch/riscv/include/asm/pgtable.h  |  3 +++
 arch/riscv/kernel/stacktrace.c    |  2 +-
 arch/riscv/mm/init.c              |  2 +-
 drivers/clocksource/timer-riscv.c |  1 +
 8 files changed, 21 insertions(+), 12 deletions(-)

-- 
2.26.2


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

end of thread, other threads:[~2020-05-20 22:50 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11  2:19 [PATCH 00/10] riscv: make riscv build happier Kefeng Wang
2020-05-11  2:19 ` [PATCH 01/10] riscv: Fix unmet direct dependencies built based on SOC_VIRT Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-13 21:14   ` Palmer Dabbelt
2020-05-13 21:14     ` Palmer Dabbelt
2020-05-11  2:19 ` [PATCH 02/10] riscv: stacktrace: Fix undefined reference to `walk_stackframe' Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-11  2:19 ` [PATCH 03/10] riscv: Add pgprot_writecombine/device and PAGE_SHARED defination if NOMMU Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-11  2:19 ` [PATCH 04/10] riscv: Fix print_vm_layout build error " Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-14 10:10   ` Alex Ghiti
2020-05-14 11:42     ` Kefeng Wang
2020-05-14 11:53   ` [PATCH v2] " Kefeng Wang
2020-05-14 11:53     ` Kefeng Wang
2020-05-20 22:49     ` Palmer Dabbelt
2020-05-20 22:49       ` Palmer Dabbelt
2020-05-11  2:19 ` [PATCH 05/10] riscv: Disable ARCH_HAS_DEBUG_WX " Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-13 21:14   ` Palmer Dabbelt
2020-05-13 21:14     ` Palmer Dabbelt
2020-05-14  8:26     ` Kefeng Wang
2020-05-14  8:26       ` Kefeng Wang
2020-05-11  2:19 ` [PATCH 06/10] riscv: Disable ARCH_HAS_DEBUG_VIRTUAL " Kefeng Wang
2020-05-11  2:19 ` [PATCH 07/10] riscv: Make SYS_SUPPORTS_HUGETLBFS depends on MMU Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-13 21:14   ` Palmer Dabbelt
2020-05-13 21:14     ` Palmer Dabbelt
2020-05-11  2:19 ` [PATCH 08/10] riscv: pgtable: Fix __kernel_map_pages build error if NOMMU Kefeng Wang
2020-05-11  2:19   ` Kefeng Wang
2020-05-11  2:20 ` [PATCH 09/10] timer-riscv: Fix undefined riscv_time_val Kefeng Wang
2020-05-11  2:20   ` Kefeng Wang
2020-05-13 21:14   ` Palmer Dabbelt
2020-05-13 21:14     ` Palmer Dabbelt
2020-05-18 14:09     ` Daniel Lezcano
2020-05-18 14:09       ` Daniel Lezcano
2020-05-18 15:40       ` Kefeng Wang
2020-05-18 15:40         ` Kefeng Wang
2020-05-18 20:23         ` Daniel Lezcano
2020-05-18 20:23           ` Daniel Lezcano
2020-05-19 12:39           ` Kefeng Wang
2020-05-19 12:39             ` Kefeng Wang
2020-05-19 13:51             ` Daniel Lezcano
2020-05-19 13:51               ` Daniel Lezcano
2020-05-20  1:14               ` Anup Patel
2020-05-20  1:14                 ` Anup Patel
2020-05-20  2:57                 ` Kefeng Wang
2020-05-20  2:57                   ` Kefeng Wang
2020-05-11  2:20 ` [PATCH 10/10] riscv: mmiowb: Fix implicit declaration of function 'smp_processor_id' Kefeng Wang
2020-05-11  2:20   ` Kefeng Wang
2020-05-13 21:14 ` [PATCH 00/10] riscv: make riscv build happier Palmer Dabbelt
2020-05-13 21:14   ` Palmer Dabbelt

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.