mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Change to SI_ORDER_FIRST to make sure this module runs before
the bktr module if both are loaded at the same time (eg in the boot loader)
This commit is contained in:
parent
8aab42e13f
commit
403cbdd892
1 changed files with 2 additions and 1 deletions
|
|
@ -169,5 +169,6 @@ static moduledata_t bktr_mem_mod = {
|
|||
bktr_mem_modevent,
|
||||
0
|
||||
};
|
||||
DECLARE_MODULE(bktr_mem, bktr_mem_mod, SI_SUB_PSEUDO, SI_ORDER_ANY);
|
||||
/* The load order is First so bktr_mem loads (and initialises) before bktr */
|
||||
DECLARE_MODULE(bktr_mem, bktr_mem_mod, SI_SUB_PSEUDO, SI_ORDER_FIRST);
|
||||
MODULE_VERSION(bktr_mem, 1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue