Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions dkms.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ BUILT_MODULE_NAME[0]="xpmem"
BUILT_MODULE_LOCATION[0]="kernel"
# where we put it under the kernel modules directory
DEST_MODULE_LOCATION[0]="/kernel/../updates/"
# how to build it
MAKE[0]="sh ./configure --with-kerneldir=$kernel_source_dir --with-kernelvers=$kernelver ; make"
# how to build it (only build kernel module for DKMS)
MAKE[0]="sh ./configure --with-kerneldir=$kernel_source_dir --with-kernelvers=$kernelver ; make -C kernel"

# clean up command
CLEAN="make distclean"
# clean up command (only clean kernel module for DKMS)
CLEAN="make -C kernel clean || true"

# rebuild and autoinstall automatically when dkms_autoinstaller runs
# for a new kernel
Expand Down
Loading