2018-02-25 19:00:50 +00:00
|
|
|
#include "bootconfig.h"
|
|
|
|
|
|
|
|
void bootconfig_load_and_verify(const bootconfig_t *bootconfig) {
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
void bootconfig_clear(void){
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Actual configuration getters. */
|
|
|
|
bool bootconfig_is_package2_plaintext(void) {
|
|
|
|
return false;
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bootconfig_is_package2_unsigned(void) {
|
|
|
|
return false;
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bootconfig_disable_program_verification(void) {
|
|
|
|
return false;
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bootconfig_is_debug_mode(void) {
|
|
|
|
return false;
|
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t bootconfig_get_memory_arrangement(void) {
|
2018-02-26 21:09:35 +00:00
|
|
|
return 0ull;
|
2018-02-25 19:00:50 +00:00
|
|
|
/* TODO */
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t bootconfig_get_kernel_memory_configuration(void) {
|
2018-02-26 21:09:35 +00:00
|
|
|
return 0ull;
|
2018-02-25 19:00:50 +00:00
|
|
|
/* TODO */
|
|
|
|
}
|