Files
PluralTechnology/service/ptos/ke/bpal/bpal.c
T
2026-07-10 06:49:52 +00:00

46 lines
729 B
C

/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: BPAL init logic
* Author: Chloe M.
*/
#include <ke/bpal.h>
#include <string.h>
#ifndef _BOOT_PROTO
#error "Boot protocol is undefined"
#else
#define BOOT_PROTO _BOOT_PROTO
#endif /* !_BOOT_PROTO */
/* Globals */
static BPAL_HANDLE BpalHandle;
VOID
KeBpalGetHandle(BPAL_HANDLE *Result)
{
if (Result == NULL) {
return;
}
*Result = BpalHandle;
}
VOID
KeBpalInit(VOID)
{
const CHAR *BootProto = BOOT_PROTO;
switch (*BootProto) {
case 'l':
if (RtlStrEq(BootProto, "limine")) {
KeBpalLimineInit(&BpalHandle);
return;
}
}
/* TODO: Bugcheck here */
}