[init] Show initialisation function names in debug messages

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2025-07-15 14:08:15 +01:00
parent 7ac4b3c6f1
commit 1e3fb1b37e
36 changed files with 38 additions and 1 deletions

View File

@@ -210,6 +210,7 @@ static void certstore_init ( void ) {
/** Certificate store initialisation function */
struct init_fn certstore_init_fn __init_fn ( INIT_LATE ) = {
.name = "certstore",
.initialise = certstore_init,
};

View File

@@ -369,6 +369,7 @@ static void des_init ( void ) {
/** Initialisation function */
struct init_fn des_init_fn __init_fn ( INIT_NORMAL ) = {
.name = "des",
.initialise = des_init,
};

View File

@@ -334,6 +334,7 @@ static void x25519_init_constants ( void ) {
/** Initialisation function */
struct init_fn x25519_init_fn __init_fn ( INIT_NORMAL ) = {
.name = "x25519",
.initialise = x25519_init_constants,
};