Atmosphere/exosphere/bootconfig.h

22 lines
535 B
C
Raw Normal View History

#ifndef EXOSPHERE_BOOTCONFIG_H
#define EXOSPHERE_BOOTCONFIG_H
#include <stdint.h>
/* This provides management for Switch BootConfig. */
typedef struct {
uint8_t unsigned_config[0x200];
uint8_t signature[0x100];
2018-02-21 19:52:39 +00:00
uint8_t signed_config[0x100];
uint8_t unknown_config[0x240];
} bootconfig_t;
2018-02-21 19:52:39 +00:00
void bootconfig_load_and_verify(const bootconfig_t *bootconfig);
void bootconfig_clear(void);
2018-02-21 19:52:39 +00:00
/* Actual configuration getters. */
2018-02-23 03:58:39 +00:00
bool bootconfig_is_package2_plaintext(void);
bool bootconfig_is_package2_unsigned(void);
2018-02-21 19:52:39 +00:00
#endif