mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-15 04:12:30 +00:00
40 lines
698 B
C
40 lines
698 B
C
#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) {
|
|
return 0ULL;
|
|
/* TODO */
|
|
}
|
|
|
|
uint64_t bootconfig_get_kernel_memory_configuration(void) {
|
|
return 0ULL;
|
|
/* TODO */
|
|
}
|