mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
nvmecontrol: One file per line
Move to a one file per line setup, and sort the files alphabetically. Sponsored by: Netflix Reviewed by: chuck, jhb Differential Revision: https://reviews.freebsd.org/D44684 (cherry picked from commit 49ea0889f2cb5e786e166fa9536c84f4a9994a6b)
This commit is contained in:
parent
efb91b313c
commit
37eb64d7d2
1 changed files with 17 additions and 4 deletions
|
|
@ -2,11 +2,24 @@
|
|||
|
||||
PACKAGE=nvme-tools
|
||||
PROG= nvmecontrol
|
||||
SRCS= comnd.c nvmecontrol.c
|
||||
SRCS+= devlist.c firmware.c format.c identify.c logpage.c ns.c nsid.c
|
||||
SRCS+= perftest.c power.c reset.c resv.c sanitize.c
|
||||
SRCS+= comnd.c
|
||||
SRCS+= devlist.c
|
||||
SRCS+= firmware.c
|
||||
SRCS+= format.c
|
||||
SRCS+= identify.c
|
||||
SRCS+= identify_ext.c
|
||||
SRCS+= logpage.c
|
||||
SRCS+= nc_util.c
|
||||
SRCS+= ns.c
|
||||
SRCS+= nsid.c
|
||||
SRCS+= nvme_util.c
|
||||
SRCS+= nvmecontrol.c
|
||||
SRCS+= passthru.c
|
||||
SRCS+= identify_ext.c nvme_util.c nc_util.c
|
||||
SRCS+= perftest.c
|
||||
SRCS+= power.c
|
||||
SRCS+= reset.c
|
||||
SRCS+= resv.c
|
||||
SRCS+= sanitize.c
|
||||
SRCS+= selftest.c
|
||||
MAN= nvmecontrol.8
|
||||
LDFLAGS+= -rdynamic
|
||||
|
|
|
|||
Loading…
Reference in a new issue