summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornl6720 <nl6720@gmail.com>2023-08-05 15:29:57 +0300
committernl6720 <nl6720@gmail.com>2023-08-08 15:22:53 +0300
commit2c1feafa83cfb0f48a1b8575c1aab1b9aefea130 (patch)
treeb3b69e2d5c966a4a37920cdd87244ebdc2d0c106
parentf90ed9b0df08f9e75ec08ddb9301174c8996f59c (diff)
install/kms: use the -c option of add_module_from_symbol
This avoids adding unnecessary modules to the image when using the autodetect hook.
-rw-r--r--install/kms2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/kms b/install/kms
index fd66462..9fa6487 100644
--- a/install/kms
+++ b/install/kms
@@ -6,7 +6,7 @@ build() {
map add_checked_modules '/drivers/char/agp/' '/drivers/gpu/drm/'
# modules that implement the privacy screen interface
- add_module_from_symbol 'drm_privacy_screen_register' '=drivers/platform'
+ add_module_from_symbol -c 'drm_privacy_screen_register' '=drivers/platform'
}
help() {