Files
espLinuxESPIDF/src/boot_table.c
T
2026-05-08 15:21:18 +07:00

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;