mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-20 19:10:06 +07:00
02941a530e
Implementation of the most basic OSD functionality and infrastructure. Mainly Format, Create/Remove Partition, Create/Remove Object, and read/write. - Add Makefile and Kbuild to compile libosd.ko - osd_initiator.c Implementation file for osd_initiator.h and osd_sec.h APIs - osd_debug.h - Some kprintf macro definitions Signed-off-by: Boaz Harrosh <bharrosh@panasas.com> Reviewed-by: Benny Halevy <bhalevy@panasas.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
33 lines
935 B
Makefile
33 lines
935 B
Makefile
#
|
|
# Kbuild for the OSD modules
|
|
#
|
|
# Copyright (C) 2008 Panasas Inc. All rights reserved.
|
|
#
|
|
# Authors:
|
|
# Boaz Harrosh <bharrosh@panasas.com>
|
|
# Benny Halevy <bhalevy@panasas.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2
|
|
#
|
|
|
|
ifneq ($(OSD_INC),)
|
|
# we are built out-of-tree Kconfigure everything as on
|
|
|
|
CONFIG_SCSI_OSD_INITIATOR=m
|
|
ccflags-y += -DCONFIG_SCSI_OSD_INITIATOR -DCONFIG_SCSI_OSD_INITIATOR_MODULE
|
|
|
|
# Uncomment to turn debug on
|
|
# ccflags-y += -DCONFIG_SCSI_OSD_DEBUG
|
|
|
|
# if we are built out-of-tree and the hosting kernel has OSD headers
|
|
# then "ccflags-y +=" will not pick the out-off-tree headers. Only by doing
|
|
# this it will work. This might break in future kernels
|
|
LINUXINCLUDE := -I$(OSD_INC) $(LINUXINCLUDE)
|
|
|
|
endif
|
|
|
|
# libosd.ko - osd-initiator library
|
|
libosd-y := osd_initiator.o
|
|
obj-$(CONFIG_SCSI_OSD_INITIATOR) += libosd.o
|