blob: 4733efa4bf062838033a1ad3075795b784dc6c03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
KERNEL_LOCAL != echo arch/riscv/kernel/*.[cS] arch/riscv/common/*.[cS]
KERNEL_SOURCES += $(KERNEL_LOCAL)
INIT_LOCAL != echo arch/riscv/init/*.[cS] arch/riscv/common/*.[cS]
INIT_FDT != echo lib/fdt*.c
INIT_SOURCES += $(INIT_LOCAL) $(INIT_FDT)
CLEANUP_CMD := ./arch/riscv/conf/rmimage.sh
ARCH_FLAGS := -mcmodel=medany
run:
./arch/riscv/conf/mkimage.sh
|