NVMe driver is necessary during spdk_vmd_init as vmd_init_end_device won't find the nvme driver during spdk_pci_nvme_get_driver call, resulting in segfault during spdk_pci_hook_device. Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com> Change-Id: I8fc3396b467e34ec49e39075dca05eeb78f9c362 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15593 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
17 lines
347 B
Makefile
17 lines
347 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2015 Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.modules.mk
|
|
|
|
APP = led
|
|
|
|
C_SRCS := led.c
|
|
|
|
SPDK_LIB_LIST = vmd log util nvme
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|