14 lines
313 B
C
Executable File
14 lines
313 B
C
Executable File
#include "boot/entry.h"
|
|
#include "boot/typedef.h"
|
|
|
|
boot_entry_t entry_data[] = {
|
|
{
|
|
.name = "ESP32S3-Linux",
|
|
.type = "operating system",
|
|
.path = "/boot/boot.bin",
|
|
.entry_function = main_entry
|
|
}
|
|
};
|
|
|
|
const int autostart_index = 0;
|
|
const int entry_table_count = 1; |