mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-12-18 08:04:20 -05:00
11 lines
432 B
Plaintext
11 lines
432 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
## Copyright (C) 2024 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
||
|
## See the file COPYING for copying conditions.
|
||
|
|
||
|
## Alerts the user that a kernel module failed to load due to it being blacklisted by default.
|
||
|
|
||
|
echo "$0: ERROR: This framebuffer driver kernel module is disabled by package security-misc by default. See the configuration file /etc/modprobe.d/30_security-misc_disable.conf | args: $@" >&2
|
||
|
|
||
|
exit 1
|