mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-10 14:59:19 +00:00
Added better kernel arguments reading
This commit is contained in:
16
include/kconfig.hpp
Normal file
16
include/kconfig.hpp
Normal file
@ -0,0 +1,16 @@
|
||||
#ifndef __FENNIX_KERNEL_KERNEL_CONFIG_H__
|
||||
#define __FENNIX_KERNEL_KERNEL_CONFIG_H__
|
||||
|
||||
#include <types.h>
|
||||
#include <memory.hpp>
|
||||
|
||||
struct KernelConfig
|
||||
{
|
||||
Memory::MemoryAllocatorType AllocatorType;
|
||||
bool SchedulerType;
|
||||
int Cores;
|
||||
};
|
||||
|
||||
KernelConfig ParseConfig(char *Config);
|
||||
|
||||
#endif // !__FENNIX_KERNEL_KERNEL_CONFIG_H__
|
Reference in New Issue
Block a user