Opened 3 years ago
#20465 new defect
Failure to load signed modules on UEFI secure boot system
| Reported by: | Tomek | Owned by: | |
|---|---|---|---|
| Component: | installer | Version: | VirtualBox 6.1.24 |
| Keywords: | Cc: | ||
| Guest type: | all | Host type: | Linux |
Description
As in title really. VirtualBox scripts build the modules, put them in right place but they (rightfully) cannot be loaded.
So I sign them.
And the story repeats - /usr/lib/virtualbox/vboxdrv.sh scripts doesn't recognize the drivers as valid ones, rebuilds them (trashing the signature I've just made) and the story repeats.
The problem probably is in line 330 in function module_available():
[ "$mod_dir" != "misc" ] return
which likely should be:
[ "$mod_dir" = "misc" ] return
Note:
See TracTickets
for help on using tickets.

