Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
kcmdline.h File Reference

(/usr/bin/git 2024-02-13, commit: 3cedead)

Header related to working with the Kernel command line. More...

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define CRINIT_KCMDLINE_PATH_DEFAULT   "/proc/cmdline"
 Default path to read the Kernel cmdline from.
 
#define CRINIT_KCMDLINE_MAX_LEN   4096uL
 Maximum supported length of the Kernel command line.
 

Functions

int crinitKernelCmdlineParse (const char *cmdlinePath)
 

Detailed Description

Header related to working with the Kernel command line.

Macro Definition Documentation

◆ CRINIT_KCMDLINE_MAX_LEN

#define CRINIT_KCMDLINE_MAX_LEN   4096uL

Maximum supported length of the Kernel command line.

◆ CRINIT_KCMDLINE_PATH_DEFAULT

#define CRINIT_KCMDLINE_PATH_DEFAULT   "/proc/cmdline"

Default path to read the Kernel cmdline from.

Function Documentation

◆ crinitKernelCmdlineParse()

int crinitKernelCmdlineParse ( const char *  cmdlinePath)

Parses and handles crinit-specific options in the Kernel command line.

Kernel command line must be accessible as a file at cmdlinePath. If the function encounters a setting from crinitKCmdlineConfigMap, it will call the associated handler.

Parameters
cmdlinePathWhere to read the Kernel command line from. This should be CRINIT_KCMDLINE_PATH_DEFAULT.
Returns
0 on success, -1 otherwise