dkms.conf error prevents auto-build under Ubuntu 13.10
dlenski opened this issue · 1 comments
dlenski commented
Under Ubuntu 13.10 (at least), the 8723au module won't auto-build correctly with new kernels. The error can be seen explicitly with dkms status
, which gives:
dkms.conf: Error! No 'BUILT_MODULE_NAME' directive
I am not sure how BUILT_MODULE_NAME is distinct from BUILD_MODULE_NAME (the manpage for v2.0.20 seems to refer to them interchangeably!), but adding this extra line to dkms.conf resolves the issue.
index 60e7f4b..fad6203 100644
--- a/dkms.conf
+++ b/dkms.conf
@@ -1,5 +1,6 @@
PACKAGE_NAME="8723au"
PACKAGE_VERSION="0.1"
BUILD_MODULE_NAME[0]="8723au"
+BUILT_MODULE_NAME[0]="8723au"
DEST_MODULE_LOCATION[0]="/kernel/drivers/net/wireless"
AUTOINSTALL="yes"
lwfinger commented
Thanks for the update. That change has been committed.